JS禁用右键+禁用Ctrl+u+禁用F12

Posted 骑着金猪看日出

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS禁用右键+禁用Ctrl+u+禁用F12相关的知识,希望对你有一定的参考价值。

第一种方法:

var arr = [123, 17, 18];
document.oncontextmenu = new Function("event.returnValue=false;"),//禁用右键
document.onselectstart = new Function("event.returnValue=false;"),//禁用选中
window.onkeydown = function (e) {
    var code = e.keyCode;
    if (arr.indexOf(code) > -1) {
        console.log("中招了", code);
        e.preventDefault();
    }
}, window.oncontextmenu = function (e) {
    e.preventDefault();
}

第二种方法:

var arr = [123, 17, 18];
document.oncontextmenu = new Function("event.returnValue=false;"),//禁用右键

window.onkeydown = function (e) {
    var keyCode = e.keyCode || e.which || e.charCode;
    var ctrlKey = e.ctrlKey || e.metaKey;
    console.log(keyCode + "--" + keyCode);
    if (ctrlKey && keyCode == 85) {
        console.log("ctrl+u");
        e.preventDefault();
    }
    if (arr.indexOf(keyCode) > -1) {
        console.log("其他");
        e.preventDefault();
    }
    //e.preventDefault();
    //return false;
}

 

以上是关于JS禁用右键+禁用Ctrl+u+禁用F12的主要内容,如果未能解决你的问题,请参考以下文章

禁用右键单击、打印和查看源代码会使键 P 和 U 不起作用[重复]

听说你想用开发者工具调试我的网站?挺可以的啊。25

听说你想用开发者工具调试我的网站?挺可以的啊。25

javascript 超狠恶毒的禁用 右键 按键 禁用开发者工具 方法

在网站中应该禁用哪些最重要的键(键盘键)? [关闭]

用JS实现控制浏览器F12与右键功能