阅读:67
在页面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;
}
/**解决IOS手机文本框不能输入问题**/
input , texteare{
-webkit-user-select:auto;
}
在线咨询