1、<body oncontextmenu="window.event.returnvalue=false">将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2、IE中禁止鼠标右键的具体做法:
在网页源码<body>和</body>间加入代码如下:
<body leftmargin=0 topmargin=0 onmousemove='HideMenu()' oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">
3、<script language="javascript">
function click() {
if (event.button==2) {
alert('你想干什么,想复制我的东东啊!忘了告诉你,请联系本站www.boydavid.com,呵呵!!.')
}
}
document.onmousedown=click
</script>
4、主要是用Event事件
<!--禁止鼠标右键代码-->
<noscript><iframe src=*.html></iframe></noscript>
<script language=javascript>
<!--
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; 电脑学习网站www.boydavid.com
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</script> 计算机学习网站www.boydavid.com
5、取消选取、防止复制
<body onselectstart="return false">
6、不准粘贴
<body onpaste="return false">
7、.防止复制
<body oncopy="return false;" oncut="return false;"> 本文出自:亿恩科技【www.enkj.com】
服务器租用/服务器托管中国五强!虚拟主机域名注册顶级提供商!15年品质保障!--亿恩科技[ENKJ.COM]
|