请求H5移动终端禁止复制,按住弹出菜单的html代码。
οondragstart = ' return false '//不拖动。
Onselectstart ='return false' //未选中。
οon select = '文档。选择。empty()'//禁止选择。
οNCοCopy = ' document . selection . empty()'//禁止复制。
禁止onbeforecopy = ' return false '//Copy。
οonοuse up = ' document . selection . empty()'?
*{
moz-user-select:-moz-none;
-moz-user-select:无;
-o-user-select:无;
-khtml-user-select:无;
-WebKit-用户选择:无;
-ms-user-select:无;
用户选择:无;
}
长按事件文档。addeventlistener("触摸开始",功能?(e) {?console . log(' touch start ');?timer = setTimeout(函数?() {?console . log(' long press ');?e . prevent default();?long press(parent obj);?}, 800);?});?document . addevent listener(" touch move ",功能?(e) {?console . log(' touch move ');?clearTimeout(定时器);?定时器= 0;?});?document . addevent listener(" touchend ",功能?(e) {?console . log(' touch end ');?clearTimeout(定时器);?如果(定时器!= 0) { ?Alert('这是点击,不是长按');?}?回归?假的;?});