代码如下:
<script language="javascript"> <!-- //js禁用某些键的代码 //www.jb200.com function key(){ if(event.shiftKey){ window.close();} //禁止Shift if(event.altKey){ window.close();} //禁止Alt if(event.ctrlKey){ window.close();} //禁止Ctrl return false;} document.onkeydown=key; if (window.Event) document.captureEvents(Event.MOUSEUP); function nocontextmenu(){ event.cancelBubble = true event.returnValue = false; return false;} function norightclick(e){ if (window.Event){ if (e.which == 2 || e.which == 3) return false;} else if (event.button == 2 || event.button == 3){ event.cancelBubble = true event.returnValue = false; return false;} } //禁右键 document.oncontextmenu = nocontextmenu; // for IE5+ document.onmousedown = norightclick; // for all others //--> </script>
<body onselectstart="return false"; onpaste="return false";>
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键特效
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" oncut="return false;" 防止复制
您可能感兴趣的文章:
javascript 禁止鼠标右键的小例子
js禁止右键、选择、复制等操作的代码
js禁止右键和复制功能的代码示例
js屏蔽鼠标右键、Ctrl+N、Alt+F4、F5刷新、退格键等的代码
javascript右键弹出图片另存为对话框的代码
js 事件-禁止右键与文本选择
js禁止页面F5刷新 右键与后退的代码
js禁用鼠标右键菜单(加强版)
javascript禁止网页右键的方法
javascript禁止页面操作(右键、复制、F5刷新)等代码
文本框禁用右键、复制、粘贴等功能的js代码