美文网首页
JS 如何禁止用户打开调试的

JS 如何禁止用户打开调试的

作者: Cherry丶小丸子 | 来源:发表于2024-07-06 14:53 被阅读0次
    setInterval(function() {
        let startTime = performance.now();
        // 设置断点
        debugger; 
        let endTime = performance.now();
        // 设置一个阈值,例如 100 毫秒
        if (endTime - startTime > 100) {
            window.location.href = 'about:blank';
        } 
    }, 100);
    

    https://zhuanlan.zhihu.com/p/689707885

    相关文章

      网友评论

          本文标题:JS 如何禁止用户打开调试的

          本文链接:https://www.haomeiwen.com/subject/acxicjtx.html