天天看點

修複ios textarea輸入框不靈敏bug

遇到了在ios手機上輸入框不靈敏,在pc浏覽器和安卓浏覽器都沒有問題。

查了網上的解決辦法,有兩種

input[type='text'],textarea{
  -webkit-user-select:auto;
  -moz-user-select:auto;
  user-select:auto;
}
      
focus(e) {
   e.target.focus();
}