移动端安卓和ios的问题记录

1.微信端input框不能输入文字;

[contenteditable = "true"], input, textarea {
-webkit-user-select: auto!important;
-khtml-user-select: auto!important;
-moz-user-select: auto!important;
-ms-user-select: auto!important;
-o-user-select: auto!important;
user-select: auto!important;
}

2.ios键盘失去焦点不自动收起
$("body").on("touchend", function() { //body上面绑定touchend事件
$("input").each(function (i, v) { //自定义一个.input_box classname ,多个时绑定多个,遍历
if($(this).is(":focus") === true){ //如果当前input框获取到了焦点
$(this).blur();
}
});
});

3.后续遇到问题再补充



 

猜你喜欢

转载自www.cnblogs.com/HONGYE1994/p/9103618.html
今日推荐