JS 禁止F12和右键操作控制台】的更多相关文章

1.鼠标点击事件 document.onmousedown = function mdClick(event) { var e = event || window.event || arguments.callee.caller.arguments[0]; if (e.button == 2 || e.button == 3) { mAlert(); } } 2. 禁用浏览器 默认右键菜单 document.oncontextmenu = new Function("return false;&…
document.oncontextmenu = function () { return false; };         document.onkeydown = function () {             ) {                 ;                 event.returnValue = false;                 return false;             }         };…
键盘表 来源:http://www.phpweblog.net/kiyone/archive/2007/04/19/1138.html 通过onkeydowm监听键盘按下事件,并修改键盘码 //禁止F12 document.onkeydown = function () { if (window.event && window.event.keyCode == 123) { event.keyCode = 0; event.returnValue = false; } if (window…
<script language=javascript> window.onload=function(){ document.onkeydown=function(){ ]; ){ return false; }){ return false; } }; document.oncontextmenu=function(){ return false; } } </script>…
1.屏蔽默认的右键菜单 js: document.getElementById('myimg').oncontextmenu=function(){return false;} jquery: $('#myimg').oncontextmenu=function(e){return false;} //not ok $('#myimg').bind('contextmenu',function(e){return false;}) //ok oncontextmenu在IE6上测试发现也可以.而…
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> <body> <div style="width:100px; height:100px; background:#09C;" </body> <script type="te…
实践项目的代码哦,给大家分享下,如何屏蔽右键与F12. 应用网站  www.empiretreasure.vip   与       www.MineBook.vip.可以去逛逛哦. 不多说了,上代码. <script> /*you can't use the F12 and right button*/ document.onkeydown = function(){ if(window.event && window.event.keyCode == 123) { aler…
<!--组合键: -->IE的键盘监听最多只能作用于document上(window我试过不行)如果内嵌了iframe并且你的焦点在iframe上,那么按键无效 这里我用CTRL+Q写的例子: function test(){ if(event.ctrlKey&&window.event.keyCode==81){ myalert(); }} <!--禁止网页右键: --> document.body.oncontextmenu=function rightClic…
document.oncontextmenu=function(){ return false }…
<script> window.onkeydown = function(e) { if (e.keyCode === 123) { e.preventDefault() } } window.oncontextmenu = function(e) { e.preventDefault() } </script> 禁是不可能禁的,这辈子都不可能禁的 高端的技术又不会,只有搞搞这种娱乐的东西,才能维持得了生活的样子…