禁止鼠标右键、禁止全选、复制、粘贴;
oncontextmenu事件禁用右键菜单;
document.oncontextmenu=function(){ event.returnValue=false; }<br>//另一种document.oncontextmenu=function(){ returnfalse; } //直接在body上<bodyoncontextmenu="return false"></body>
onselectstart事件禁用网页上选取的内容;
document.onselectstart=function(){ event.returnValue=false; } //另一种<br><br>document.onselectstart = function(){ return false; }<emid="__mceDel">//直接在body上 <body onselectstart = "return false" ></body></em>
oncopy事件禁用复制;
document.oncopy=function(){ event.returnValue=false; } //另一种document.oncopy=function(){ returnfalse; } <br>//直接在body上 <body oncopy = "return false" ></body>
甚至可以可以禁用鼠标事件
document.onmousedown=function(e){ if ( e.which==2 ){// 鼠标滚轮的按下,滚动不触发returnfalse; } if( e.which==3 ){// 鼠标右键returnfalse; } }
需要页面禁止复制或者右键打开菜单的情况下,最好结合多种方法进行禁用
额外的写一些关于禁用键盘按键的内容
document.onkeydown=function(){ if( event.ctrlKey ){ returnfalse; } if ( event.altKey ){ returnfalse; } if ( event.shiftKey ){ returnfalse; } }