JavaScript前端神奇代码,可防止恶意调试

 一、粘贴这段神奇代码到你的系统首页,打开开发者工具看看效果(F12)。

(() => {
        function block() {
            if (window.outerHeight - window.innerHeight > 200 || window.outerWidth - window.innerWidth > 200) {
                document.body.innerHTML = "

大傻春, 你要干什么!

" } setInterval(() => { (function () { return false; } ['constructor']('debugger') ['call']()); }, 50); } try { block(); } catch (err) { } })();

二、效果

你可能感兴趣的:(前端,javascript)