DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> 前端技巧 >> 網頁防復制功能實現方法(附破解方法)
網頁防復制功能實現方法(附破解方法)
編輯:前端技巧     
通過右鍵查看源文件發現如下代碼:
1、firefox下可以通過css來禁止選擇復制功能
CSS Code復制內容到剪貼板
  1. <style type="text/css" media="screen">   
  2. body {-moz-user-select: none;-webkit-user-select: none;}   
  3. </style>  
2、IE中需要用js來限制

復制代碼代碼如下:
<script type="text/javascript">
document.onselectstart = function(e) {
return false;
}
document.oncontextmenu = function(e) {
return false;
}
</script>


完整的結合就是



提示:您可以先修改部分代碼再運行
當然,一般都會同時提供的,firefox下通過css來控制的,當然大家可以通過直接保存下代碼,然後將css代碼刪掉即可。IE下也一樣,如果一篇文章還好,如果很多大家讀受不了吧。
大家可以通過ie中禁掉js的方法,來實現。
在IE地址欄輸入如下代碼即可,注意是一行的。

復制代碼代碼如下:
javascript:document.oncontextmenu=null;document.onselectstart=null;document.ondragstart=null;document.onbeforecopy=null;document.oncopy=null;document.onselect=null;void(0);
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved