1、<body oncontextmenu="window.event.returnvalue=false">將徹底屏蔽鼠標右鍵
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2、IE中禁止鼠標右鍵的具體做法:
在網(wǎng)頁源碼<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('你想干什么,想復(fù)制我的東東啊!忘了告訴你,請聯(lián)系本站
}
}
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; 電腦學習網(wǎng)站www.boydavid.com
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</script> 計算機學習網(wǎng)站www.boydavid.com
5、取消選取、防止復(fù)制
<body onselectstart="return false">
6、不準粘貼
<body onpaste="return false">
7、.防止復(fù)制
<body oncopy="return false;" oncut="return false;"> 本文出自:億恩科技【mszdt.com】
服務(wù)器租用/服務(wù)器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]
|