系統(tǒng)軟件園 - 專注分享最好的電腦系統(tǒng)軟件!免費(fèi)安全下載 系統(tǒng)軟件園首頁(yè) | Win7激活工具 | 熱門專題
系統(tǒng)軟件園>您的位置:首頁(yè) > > 系統(tǒng)教程 > 軟件教程 >

【禁止鼠標(biāo)右鍵代碼】網(wǎng)頁(yè)中禁止使用右鍵,禁止復(fù)制script代碼大全

更新時(shí)間:2018-03-11 18:49:12| 編輯:本站整理 | 信息來(lái)源:本站整理|瀏覽數(shù):
在網(wǎng)頁(yè)中,辛辛苦苦寫的文章,被別人復(fù)制粘貼給盜用去另很多站長(zhǎng)感到非常無(wú)奈,通常大家復(fù)制都會(huì)使用選取右鍵復(fù)制,或CTRL+C等方式,下面介紹幾種禁止鼠標(biāo)右鍵代碼,可減少網(wǎng)頁(yè)上文章被抄襲的幾率,當(dāng)然對(duì)高手來(lái)說(shuō),破解也很簡(jiǎn)單,不管怎么樣,我們還是一起試試吧。



使用方法:以下代碼加入到<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ù)功能,大家可以去試試哦。

返回頂部


系統(tǒng)軟件園發(fā)布的系統(tǒng)鏡像及軟件均來(lái)至互聯(lián)網(wǎng),僅供學(xué)習(xí)和研究使用,不得用于任何商業(yè)用途并請(qǐng)?jiān)谙螺d后24小時(shí)內(nèi)刪除,如果滿意請(qǐng)聯(lián)系版權(quán)方購(gòu)買。
如果您發(fā)現(xiàn)本站侵害了您的版權(quán),請(qǐng)立即聯(lián)系我們,本站將第一時(shí)間進(jìn)行相關(guān)處理。聯(lián)系方式(見首頁(yè))
版權(quán)聲明|下載聲明 Copyright @ 2016 系統(tǒng)軟件園