網(wǎng)站建設(shè)-服務(wù)項(xiàng)目包括:網(wǎng)站建設(shè),網(wǎng)站改版,網(wǎng)站優(yōu)化,企業(yè)形象策劃,網(wǎng)頁設(shè)計(jì),網(wǎng)站制作等領(lǐng)域,公司服務(wù)大小企業(yè)近2000多家,咨詢電話:400-006-1314
網(wǎng)站上線,肯定會(huì)有人看,有人看就避免不了的會(huì)復(fù)制你網(wǎng)頁上的內(nèi)容,那么今天就這個(gè)問題我們就來解決一下,怎樣防止別人復(fù)制你網(wǎng)站的內(nèi)容。
下面的代碼也是我實(shí)踐用的,借鑒別人的代碼。希望對(duì)您有所幫助!
網(wǎng)頁防復(fù)制代碼 禁止查看網(wǎng)頁源文件代碼
插入網(wǎng)頁即可。
<body leftmargin="2" topmargin="0" marginwidth="0" marginheight="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()">
<noscript><iframe src="/blog/*>";</iframe></noscript>
1. oncontextmenu="window.event.returnvalue=false" //將徹底屏蔽鼠標(biāo)右鍵
<table border oncontextmenu=return(false)><td>no</table> //可用于Table
2. <body onselectstart="return false"> //取消選取、防止復(fù)制
3. onpaste="return false" //不準(zhǔn)粘貼
4. oncopy="return false;" oncut="return false;" // 防止復(fù)制
5. //防止被人frame
<SCRIPT LANGUAGE=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
6. <noscript><iframe src="/blog/*.html>";</iframe></noscript> //網(wǎng)頁將不能被另存為
7. //改變連接是狀態(tài)欄的顯示內(nèi)容
〈a href="" onMo ... ;window.status='輸入連接狀態(tài)欄顯示內(nèi)容’;return true">
8. //禁止網(wǎng)頁中目標(biāo)對(duì)象被下載(如圖片)
下面的代碼將幫助你禁止網(wǎng)頁中目標(biāo)對(duì)象被下載:
<a href="javascript:void(0)" onMouseDown="alert('對(duì)不起!圖片不能下載!')">
</a>
9. //頁面禁止刷新完全
最好在pop出來的窗口里用,沒工具欄的
<body onkeydown="KeyDown()" onbeforeunload="location=location"
oncontextmenu="event.returnValue=false">
<script language="Javascript"><!--
function KeyDown(){
if ((window.event.altKey)&&
((window.event.keyCode==37)||
(window.event.keyCode==39))){ alert("請(qǐng)?jiān)L問我的主頁");
event.returnValue=false;
}
if ((event.keyCode==8)|| (event.keyCode==116)){ //屏蔽 F5 刷新鍵
event.keyCode=0;
event.returnValue=false;
}
if ((event.ctrlKey)&&(event.keyCode==78)){ //屏蔽 Ctrl+n
event.returnValue=false;
}
if ((event.shiftKey)&&(event.keyCode==121)){ //屏蔽 shift+F10
event.returnValue=false;
}
}
</script>
</body>
北京網(wǎng)站建設(shè)瑞恒網(wǎng)絡(luò)這里有靠譜的網(wǎng)站資訊信息。歡迎致電:400-600-6204