网页禁止右键和F12打开控制台

180it 2021-09-03 PM 1478℃ 0条

网页禁止右键和F12打开控制台

禁止右键:

document.oncontextmenu = new Function("return false;");
禁止F12:

document.onkeydown = document.onkeyup = document.onkeypress = function(event) {
    var e = event || window.event || arguments.callee.caller.arguments[0];

    if (e && e.keyCode == 123) {
            e.returnValue = false;
            return (false);
    }
}
支付宝打赏支付宝打赏 微信打赏微信打赏

如果文章或资源对您有帮助,欢迎打赏作者。一路走来,感谢有您!

标签: none

网页禁止右键和F12打开控制台