(function noDebuger() {
function testDebuger() {
var wWADWeTEd1 = new window["Date"]();
debugger;
if (new window["Date"]() - wWADWeTEd1 > 10) {
window["document"]['body']['innerHTML'] = '<div>私有接口,请勿调用</div>';
return true
}
return false
}
function start() {
while (testDebuger()) {
testDebuger()
}
}
if (!testDebuger()) {
window['onblur'] = function() {
setTimeout(function() {
start()
}, 500)
}
} else {
start()
}
})();
注意: 如果封装成 js 文件一定在 body 标签之后引入
作者:A-Chainsmokers
链接:https://ld246.com/article/1585157247869
来源:链滴
协议:CC BY-SA 4.0 https://creativecommons.org/licenses/by-sa/4.0/