只要按下那神秘的审查元素、按下那神秘的 F12 键,奇迹出现了!网站变成了空白页,可谓杀 Bug 放火必备佳品!一段 JavaScript 代码即可实现上述功能,插入到 footer的之前:

<script>function fuckyou(){
 window.close(); //关闭当前窗口(防抽)
 window.location=”about:blank”; //将当前窗口跳转置空白页
}
 function ck() {
 console.profile();
 console.profileEnd();
 //我们判断一下profiles里面有没有东西,如果有,肯定有人按F12了,没错!!
 if(console.clear) { console.clear() };
 if (typeof console.profiles ==”object”){
 return console.profiles.length > 0;
 }
}
function hehe(){
if( (window.console && (console.firebug || console.table && /firebug/i.test(console.table()) )) || (typeof opera == ‘object’ && typeof opera.postError == ‘function’ && console.profile.length > 0)){
 fuckyou();
}
if(typeof console.profiles ==”object”&&console.profiles.length > 0){
fuckyou();
}
}
hehe();
window.onresize = function(){
if((window.outerHeight-window.innerHeight)>200)
//判断当前窗口内页高度和窗口高度,如果差值大于200,那么呵呵
 fuckyou();
}</script>

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。