共计 498 个字符,预计需要花费 2 分钟才能阅读完成。
一:屏蔽 F12 审查元素
// 屏蔽 F12
document.onkeydown = function(){if(window.event && window.event.keyCode == 123) {
// 将以后窗口跳转置空白页
window.location="about:blank";
event.keyCode=0;
event.returnValue=false;
}
}
二:屏蔽鼠标右键菜单
// 屏蔽右键菜单
document.oncontextmenu = function (event){return false;}
三:屏蔽粘贴文本内容
// 屏蔽粘贴
document.onpaste = function (event){return false;}
四:屏蔽复制文本内容
// 屏蔽复制
document.oncopy = function (event){return false;}
五:屏蔽剪切文本内容
// 屏蔽剪切
document.oncut = function (event){return false;}
六:屏蔽选中文本内容
// 屏蔽选中
document.onselectstart = function (event){return false;}
正文完
发表至: javascript
2024-03-05