解除禁止操作

没有禁止f12可以直接按f12,如果被限制就按ctrl+shift+i打开,或浏览器菜单开发者工具
进入开发者工具点击控制台,输入以下内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 开启右键菜单
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键
document.onkeydown = function () {
if (window.event && window.event.keyCode == 123) {
event.keyCode = 0;
event.returnValue = true;
return true;
}
};

csdn关注才能看,去除方法

1
document.getElementById("article_content").setAttribute('style','width: 100%');

引用

去除网页限制
csdn关注才去除