找回密码
 注册账号

QQ登录

只需一步,快速开始

《泰拉瑞亚下载-1.4.2.3版》 泰拉瑞亚服务器 - MOD模组下载

入驻泰拉战网 新手指引 - 升级 - 师徒

泰拉瑞亚合成表 泰拉卡牌 - 泰拉江湖 - 泰拉刺客

联系泰拉开发组👈进入 积分市场 - 房产交易 - 水晶获取

查看: 1642|回复: 0

js禁用调试台,禁用开发者工具套餐

[复制链接]
小丑
法师

309

主题

21

回帖

18

广播

见习版主

积分
774
泰拉
11443
水晶
5
铜钥匙
3
银钥匙
0
金钥匙
0

【江湖新秀】【我是小土豪】【宝剑回鞘】【泰拉达人】【奥运选手】【潜水高手】

发表于 2022-1-27 14:06:55 | 显示全部楼层 |阅读模式
技术交流
文章类型: 工具字典
涉及领域: Javascript 
内容难度: 困难
禁用所有快捷键   f12, ctrl  
禁止调试js文件
打开调试台关闭页面

[JavaScript] 纯文本查看 复制代码
window.onkeydown = window.onkeyup = window.onkeypress = function (event) {
    // 判断是否按下F12,F12键码为123
    if (event.keyCode === 123 || event.ctrlKey) {
        event.preventDefault(); // 阻止默认事件行为
        window.event.returnValue = false;
        layer.msg("别看代码了= =")
    } else if (event.keyCode === 116) {
        if (navigator.userAgent.indexOf('MSIE') > 0) { // close IE
   if (navigator.userAgent.indexOf('MSIE 6.0') > 0) {
      window.opener = null;
      window.close();
   } else {
      window.open('', '_top');
      window.top.close();
   }
} else { // close chrome;It is effective when it is only one.
   window.opener = null;
   window.open('', '_self');
   window.close();
}
    }
}
window.oncontextmenu = function () {
    event.preventDefault(); // 阻止默认事件行为
    layer.msg("右键也不行哦")
    return false;

}
var threshold = 160; // 打开控制台的宽或高阈值
// 每秒检查一次
setInterval(function () {
    if (window.outerWidth - window.innerWidth > threshold ||
        window.outerHeight - window.innerHeight > threshold) {
        // 如果打开控制台,关闭页面
       if (navigator.userAgent.indexOf('MSIE') > 0) { // close IE
   if (navigator.userAgent.indexOf('MSIE 6.0') > 0) {
      window.opener = null;
      window.close();
   } else {
      window.open('', '_top');
      window.top.close();
   }
} else { // close chrome;It is effective when it is only one.
   window.opener = null;
   window.open('', '_self');
   window.close();
}
    }
}, 1000);
// 禁止用户调试js代码
function disableDebugger() {
    debugger;
}
$(document).ready(function () {
    disableDebugger();
});

您需要登录后才可以回帖 登录 | 注册账号

本版积分规则

QQ|友链申请|Archiver|手机版|小黑屋|游芯沙盒 ( 陕ICP备11006283号-1 )

GMT+8, 2024-5-6 03:17 , Processed in 0.197471 second(s), 36 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表