禁止複製網頁內容的程式碼例項

admin發表於2017-03-20

現在很多客戶要求不能夠複製網頁的內容,具體來說就是禁止滑鼠右鍵和禁用選中功能,下面就介紹一下利用javascript實現此功能,不過這種方法只能夠防住不懂網路知識的人,如果稍有網路知識就能夠輕鬆破解。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>  
<html>  
<head>  
<meta charset=" utf-8">  
<meta name="author" content="http://www.softwhy.com/" />  
<title>螞蟻部落</title> 
<style type="text/css">
#thediv{
  width:250px;
  height:30px;
  line-height:30px;
  text-align:center;
  margin:0px auto;
}
</style>
<script type="text/javascript">
document.oncontextmenu=function(){return false}
document.onselectstart=function(){return false}
</script>
</head>
<body>
<div id="thediv">右鍵和選中效果已經被禁用</div>
</body>
</html>

以上程式碼實現了我們的要求,不能夠選中頁面任何內容,右鍵選單也被禁止。

相關文章