Posted in Javascript onApril 15, 2010
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”,不然提示出的信息会是乱码。页面引用:
<script src="../Script/xp.js" type="text/javascript" charset="gb2312"></script>
1. 将彻底屏蔽鼠标右键
oncontextmenu="window.event.returnValue=false" <table border oncontextmenu=return(false)> <td> no</table> 可用于Table function click() { if (event.button==2) { alert('对不起,本页禁用右键!') } } document.onmousedown=click
2.取消选取、防止复制
<body onselectstart="return false">
3. 不准粘贴
onpaste="return false"
4.防止复制
oncopy="return false;" oncut="return false;"
JavaScript 快捷键设置实现代码
JS input文本框禁用右键和复制粘贴功能的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@