最近在app内嵌h5开发时,发现input/textarea输入框无法输入,经查明是-webkit-user-select:none导致的。
解决方案如下:
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
-webkit-appearance: none;
outline: none;
}
*:not(input,textarea) {
-webkit-touch-callout: none;
-webkit-user-select: none;
}
网友评论