1. 程式人生 > >移動端禁止長按複製提示框

移動端禁止長按複製提示框

當e.prenventDefault()無效時試試這個

*{
  -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;
}

如果頁面上有input框也會被禁止輸入,記得加上這個

input{
  -webkit-user-select: auto;
}