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

 

相关文章:

  • 2021-06-17
  • 2021-10-29
  • 2021-10-06
  • 2022-12-23
  • 2022-12-23
  • 2019-01-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2021-04-07
  • 2021-10-19
  • 2021-11-28
  • 2021-12-05
相关资源
相似解决方案