使用方法:以下代碼加入到<script language=JavaScript>之間</script>
oncontextmenu事件禁用右鍵菜單代碼;
js代碼:
document.oncontextmenu = function(){
event.returnValue = false;
}
// 或者直接返回整個(gè)事件
document.oncontextmenu = function(){
return false;
}
onselectstart事件禁用網(wǎng)頁(yè)上選取的內(nèi)容;
js代碼:
document.onselectstart = function(){
event.returnValue = false;
}
// 或者直接返回整個(gè)事件
document.onselectstart = function(){
return false;
}
oncopy事件禁用復(fù)制;
js代碼:
document.oncopy = function(){
event.returnValue = false;
}
// 或者直接返回整個(gè)事件
document.oncopy = function(){
return false;
}
以上三種事件,如果只想單純的禁用鼠標(biāo)右鍵,和復(fù)制粘貼,還可以將它們直接寫到HTML中的body上面;
<body oncontextmenu = "return false" ></body>
<body onselectstart = "return false" ></body>
<body oncopy = "return false" ></body>
禁用鼠標(biāo)事件
document.onmousedown = function(e){
if ( e.which == 2 ){// 鼠標(biāo)滾輪的按下,滾動(dòng)不觸發(fā)
return false;
}
if( e.which==3 ){// 鼠標(biāo)右鍵
return false;
}
}
禁用鍵盤中的ctrl、alt、shift
document.onkeydown = function(){
if( event.ctrlKey ){
return false;
}
if ( event.altKey ){
return false;
}
if ( event.shiftKey ){
return false;
}
}
關(guān)鍵就在
oncontextmenu='return false'
ondragstart='return false'
onselectstart ='return false'
onselect='document.selection.empty()'
oncopy='document.selection.empty()'
onbeforecopy='return false'
onmouseup='document.selection.empty()'
一個(gè)更簡(jiǎn)單的方法就是在<body>中加入如下的代碼,這樣鼠標(biāo)的左右鍵都失效了.
topmargin="0"
oncontextmenu="return false" ondragstart="return false" onselectstart
="return false" onselect="document.selection.empty()"
oncopy="document.selection.empty()" onbeforecopy="return false"
onmouseup="document.selection.empty()"
1.禁止網(wǎng)頁(yè)另存為:在<body>后面加入以下代碼:
<noscript>
<iframe src="*.htm"></iframe>
</noscript>
2.禁止網(wǎng)頁(yè)內(nèi)容復(fù)制.粘貼:在<body>中加入以下代碼:
<body
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()">
?
在網(wǎng)站的建設(shè)中,文章內(nèi)容通過(guò)技術(shù)手段禁止復(fù)制只能說(shuō)是一個(gè)輔助作用,保護(hù)原創(chuàng)才是正解,目前百度推出了原創(chuàng)保護(hù)功能,大家可以去試試哦。