js禁用F1至F12、禁止缩放、取消选中并且取消右键操作、打印、拖拽、鼠标点击弹出自定义信息、禁用开发者工具js
禁用js//禁止缩放//luwenjiehualunwindow.addEventListener('mousewheel',function(event){if(event.ctrlKey===true||event.metaKey){event.preventDefault();}},{passive:false});//firefoxwindow.addEventListener('DOMM