function click(e) { if (document.all) { if (event.button==1||event.button==2||event.button==3) { 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;") var trxdyel=true var hotkey=17 /* hotkey即为热键的键值,是ASII码,这里99表明c键 */ if (document.layers) document.captureEvents(Event.KEYDOWN) function gogo(e) { if (document.layers) { if (e.which==hotkey && trxdyel) { alert('操做错误.或许是您按错键了!'); } } else if (document.all) { if (event.keyCode==hotkey&&trxdyel){ alert('操做错误.或许是您按错键了!'); }} } document.onkeydown=gogo
将以上JS代码写到JS文件中取名为xp.js并放入Script文件夹中,引用时须要注意设置Charset=“gb2312”,否则提示出的信息会是乱码。页面引用: javascript
<script src="../Script/xp.js" type="text/javascript" charset="gb2312"></script>
1. 将完全屏蔽鼠标右键