今天作項目時,h5頁面上的有一個textarea輸入框,在ios上 發現不能輸入了html
查看了一下問題發現是由於在公共樣式代碼中寫了以下代碼ios
這個代碼是防止用戶長按粘貼的 加上這個就會影響ios的input 和textarea
-webkit-user-select:none; /*webkit瀏覽器*/
-khtml-user-select:none; /*早期瀏覽器*/
-moz-user-select:none;/*火狐*/
-ms-user-select:none; /*IE10*/
user-select:none;
複製代碼
那麼只要將以上 改爲下面的就行了web
-webkit-user-select:auto; /*webkit瀏覽器*/
user-select:auto;
-o-user-select:auto;
-ms-user-select:auto;
複製代碼