document.oncontextmenu = new Function("event.returnValue=false;"); //禁用右键菜单
document.ondragstart = new Function("event.returnValue=false;"); //禁用图片拖拽
document.onselectstart=new Function("event.returnValue=false;"); //禁用选中
JS代码禁用当前页面事件
于 2024-04-17 16:40:31 首次发布