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