1. 程式人生 > >移動端web 禁止長按彈出的選單 Safari

移動端web 禁止長按彈出的選單 Safari

這是一個系列,記錄我前端開發常用的程式碼,小常識,有些是參考網上程式碼,(講的可能有點爛,求不要打臉,嚶嚶嚶~~)送給那些需要的人。可以相互交流,喜歡的加我吧。
Wx: Lxp911221

如果是禁用長按選擇文字功能,用 css 就可以:

* {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}

如果是想禁用長按彈出選單, 用 js

  node.addEventListener('contextmenu', function(e){
    e.preventDefault();
  });
node.ontouchend = function () {
    throw new Error("NO ERRPR:禁止長按彈出的選單");
}