移动端下禁用长按功能

 

用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();
});
原文地址:https://www.cnblogs.com/liyongquan/p/8403771.html