1、右鍵復制時顯示提示語
把下面代碼放到footer.php里即可
代碼如下:
<html>
<head><title>防復制</title><meta http-equiv="Content-Type" cont
ent="text/html; charset=utf-8" /></head>
<script>
function stop(){
alert('鄙視盜版,尊重版權,人人有責!');
return false;
}
document.oncontextmenu=stop;
</script>
<body onselectstart="return false" onpaste="return false" oncop
y="return false;"
oncut="return false;" >
</body>
</html>
2、禁用所有復制功能
把下面代碼放到footer.php里即可。
代碼如下:
<script type="text/Javascript">
<!--
document.oncontextmenu=function(e){return false;};
document.onselectstart=function(e){return false;};
//-->
</script>
<style>
body{
-moz-user-select:none;
}
</style>
<SCRIPT LANGUAGE=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
<noscript><iframe src=*.html></iframe></noscript>
此代碼實現:
1、禁止鼠標左鍵選取內容。
2、禁止鼠標右鍵復制功能。
3、禁止使用ctrl鍵,無法復制。