网页限制F12,接触教程

// 开启右键菜单

document.oncontextmenu = function(){ return true; };


// 开启文字选择

document.onselectstart = function(){ return true; };


// 开启复制

document.oncopy = function(){ return true; };


// 开启剪切

document.oncut = function(){ return true; };


// 开启粘贴

document.onpaste = function(){ return true; }; 


// 开启F12键

扫描二维码关注公众号,回复: 15675625 查看本文章

document.onkeydown = function () {
if (window.event && window.event.keyCode == 123) {
event.keyCode = 0;
event.returnValue = true;
return true;
}
};

猜你喜欢

转载自blog.csdn.net/cyz141001/article/details/129059376
f12
今日推荐