雨云 RainYun.com
服务器,存储桶,游戏云,域名注册 积分换钱 持证
开门见山
这是博主组合起来的代码,轻松屏蔽鼠标,F12,控制台快捷键,只要直接访问网页,简直无懈可击!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| function click(e) { if (document.all) { if (event.button == 2 || event.button == 3) { alert("屏蔽了,按也没用!"); oncontextmenu = 'return false'; } } if (document.layers) { if (e.which == 3) { oncontextmenu = 'return false'; } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown = click; document.oncontextmenu = new Function("return false;")
document.onkeydown = document.onkeyup = document.onkeypress = function() { if (window.event.keyCode == 123) { window.event.returnValue = false; return (false); } }
window.oncontextmenu = function() { return false; }
window.onkeydown = window.onkeyup = window.onkeypress = function() { window.event.returnValue = false; return false; }
|