JS实现禁止浏览器的一些常规
一:屏蔽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;
}
相关文章