H5页面在OPPO,华为,酷派等安卓机体现的问题,显示背景蓝色,边框蓝色,以下方法最为实用,不需要考虑任何机型!js控制
html部分
<textarea onfocus="changeStyle()"></textarea>
js部分
function changeStyle(){
$('textarea').css({
'background-color': 'white',
'border': '1px solid gray'
})
}
由于公司测试非常认真负责,需做到页面统一,固想到此方法。