iOS 处理webview的input输入框能弹出键盘,但是找不到焦点导致无法输入问题

百度搜了好多,毕竟不是我们APP端的事情,但是还是要解决的,O(∩_∩)O哈哈~

经过后台测试发现是-webkit-user-select:none;所导致的原因

当然如果你确实需要这个-webkit-user-select这个属性,css初始化代码改写为如下即可

*{

    -webkit-touch-callout:none;  /*系统默认菜单被禁用*/ 

    -webkit-user-select:none; /*webkit浏览器*/ 

    -khtml-user-select:none; /*早期浏览器*/ 

    -moz-user-select:none;/*火狐*/ 

    -ms-user-select:none; /*IE10*/ 

    user-select:none; 

}

*:not(input,textarea) { 

-webkit-touch-callout: none; 

-webkit-user-select: none; 

}

附上参考链接:传送门走起^_^

你可能感兴趣的:(iOS 处理webview的input输入框能弹出键盘,但是找不到焦点导致无法输入问题)