1. 程式人生 > >HTML禁止複製貼上以及禁止下載圖片的小技巧

HTML禁止複製貼上以及禁止下載圖片的小技巧

一、禁止複製文字程式碼 
<body leftmargin=0 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()'>

二、真正的遮蔽滑鼠右鍵

<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;
}

}

document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</script>

三、

<SCRIPT LANGUAGE=javascript>
function click() {alert('禁止左鍵複製!') }
function click1() {if (event.button==2) {alert('禁止右鍵點選~!') }}
function CtrlKeyDown(){if (event.ctrlKey) {alert('非法拷貝將損害您的系統!') }}
document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;
</SCRIPT>

把上面的程式碼放到</head> 與<body> 之間我已經除錯過了 沒問題

禁止儲存網頁

<
NOSCRIPT
><IFRAME src=Example132.htm></IFRAME></NOSCRIPT>

下面這段程式碼,就能搞定在網頁中又禁止複製、又禁止鍵盤複製、還能禁止選擇。
<script language="Javascript">
document.oncontextmenu=new Function("event.returnValue=false");
document.onselectstart=new Function("event.returnValue=false");
</script>

四、

onselect="document.selection.empty()"//禁止選中
oncopy="document.selection.empty()"//禁止複製
下面給你個演示:
<html>

<head><title>禁止右鍵和禁止使用複製鍵</title>

<script language="javascript">

function onKeyDown()
{
if ((event.keyCode==116)||(window.event.ctrlKey)||(window.event.shiftKey)||(event.keyCode==122))
{
event.keyCode=0;
event.returnValue=false;
}
}

function yxl() {
if(window.event.altKey)
{
window.event.returnValue=false;
}
}
document.onkeydown=yxl ;

</script>

</head>

<!--在網頁中加上下面程式碼//-->

<body onkeydown="onKeyDown()" oncontextmenu="return false">
嘿嘿,把我複製走吧,我跟你拉!呵呵
</body>

</html>

五、

禁止複製程式碼
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="
Netscape
")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
</head>
<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()">

<noscript><iframe src="/*>";</iframe></noscript>

禁止下載圖片:

可以做雙層保護
第一,oncontextmenu="return false"
放在<body>裡 
例子:<body  oncontextmenu="return false" bgcolor="808080" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >

作用:簡單的方式右健彈出
第二,現在IE或者QQ瀏覽器都有自己的IE外掛 滑鼠放到圖片會有外掛提示你儲存
解決辦法:
方法一(針對單獨的圖片):

方法二(針對整個頁面中的圖片有效):
<meta http-equiv="imagetoolbar" content="false">

這樣的話可以做雙層保護的
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼
oncontextmenu="return false" :禁止右鍵
onselectstart="return false" : 禁止選取
onpaste = "return false" : 禁止貼上
oncopy = "return false" : 禁止複製
oncut = "return false" : 禁止剪貼