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