移动端下禁用长按功能

 

用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();
});

 

posted @ 2018-02-02 10:15  大地长空  阅读(937)  评论(0编辑  收藏  举报