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 不起作用[重复]