解除禁止操作
没有禁止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; };
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关注才去除