今天做一網(wǎng)站項目時,客戶要求讓用戶不能復制網(wǎng)站內(nèi)容,網(wǎng)上搜索了一下,總結成以下二幾行代碼。其實吧,要是懂的人,這些都是浮云來的,客戶就是要讓一般人不能復制他的內(nèi)容資料。
<SCRIPT language=javascript type=text/javascript>
<!--
document.oncontextmenu=new Function('event.returnValue=false;');
document.onselectstart=new Function('event.returnValue=false;');
-->
</SCRIPT>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>禁止網(wǎng)頁復制的代碼</title>
</head>
<body style="text-align:center">
<p> </p>
<p> </p>
<p>網(wǎng)頁禁止右鍵、禁止查看源代碼、禁止復制的代碼,試試你的右鍵、ctrl+c和ctrl+c吧~
<SCRIPT language=javascript type=text/javascript>
<!--
document.oncontextmenu=new Function('event.returnValue=false;');
document.onselectstart=new Function('event.returnValue=false;');
-->
</SCRIPT>
</p>
</body>
</html>