網(wǎng)頁(yè)禁止右鍵、禁止查看源代碼、禁止復(fù)制和另存為的代碼簡(jiǎn)單介紹如下:
代碼一
當(dāng)按下鼠標(biāo)左鍵進(jìn)行選擇或點(diǎn)擊右鍵或按CTRL鍵時(shí),會(huì)彈出對(duì)話框:
=================================
<!--禁止復(fù)制-->
<SCRIPT LANGUAGE=javascript>
function click() {
alert('禁止你的左鍵復(fù)制!') }
function click1() {
if (event.button==2) {alert('禁止右鍵點(diǎn)擊~(yú)!') }}
function CtrlKeyDown(){
if (event.ctrlKey) {alert('不當(dāng)?shù)目截悓p害您的系統(tǒng)!') }}
document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;
</SCRIPT>
<!--禁止復(fù)制-->
代碼二【推薦】:
當(dāng)按下鼠標(biāo)時(shí),無(wú)任何反應(yīng),從而保護(hù)好頁(yè)面:
==================================
<!--無(wú)法復(fù)制-->
<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ú)法復(fù)制-->
以下代碼讓網(wǎng)頁(yè)無(wú)法保存,但可以另存。
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: dede網(wǎng)站瀏覽禁止右鍵、查看源碼、復(fù)制的方法