有时候,我们可能希望自己的网站不被调试,这里推荐一个方法,只要将下面的代码,加入到当前页面中,当别人打开F12,就会进入debug模式,并且,无论怎么按F10都无法跳过(当然,跳过方法也有):
var forbidDebug = function(){ try{ ((function() { var callbacks = [], timeLimit = 50, open = false; setInterval(loop, 1); return { addListener: function(fn) { callbacks.push(fn); }, cancleListenr: function(fn) { callbacks = callbacks.filter(function(v) { return v !== fn; }); } } function loop() { var startTime = new Date(); debugger; if (new Date() - startTime > timeLimit) { if (!open) { callbacks.forEach(function(fn) { fn.call(null); }); } open = true; window.stop(); alert('扒的话,劳烦您尊重一下劳动成果!'); document.body.innerHTML = ""; } else { open = false; } } })()).addListener(function() { window.location.reload(); }); }catch(e){ } try{ document.onkeydown=function(){ var e = window.event||arguments[0]; if(e.keyCode==123){ alert('扒的话,劳烦您尊重一下劳动成果!'); return false; }else if((e.ctrlKey)&&(e.shiftKey)&&(e.keyCode==73)){ alert('扒的话,劳烦您尊重一下劳动成果!'); return false; }else if((e.ctrlKey)&&(e.keyCode==85)){ alert('扒的话,劳烦您尊重一下劳动成果!'); return false; }else if((e.ctrlKey)&&(e.keyCode==83)){ alert('扒的话,劳烦您尊重一下劳动成果!'); return false; } } }catch(e){ } }; forbidDebug();