想了解免费建站的朋友,查看《免费建站教程》

禁止右键f12

2021-01-16 1310 JS
    document.onkeydown = function() {
        var e = window.event || arguments[0];
        if (e.keyCode == 123) {
            return false;
        }
    }
    document.oncontextmenu = function() {
        return false;
    }


版权保护: 转载请保留链接: https://cgy.isi8.cn/js/242.html