网页,防复制通过右键查看源文件发现如下代码: 1、firefox下可以通过css来禁止选择复制功能
CSS Code复制内容到剪贴板 - <style type="text/css" media="screen">
- body {-moz-user-select: none;-webkit-user-select: none;}
- </style>
2、IE中需要用js来限制
<script type="text/javascript"> document.onselectstart = function(e) { return false; } document.oncontextmenu = function(e) { return false; } </script>
完整的结合就是
提示:您可以先修改部分代码再运行
当然,wanshiok.com一般都会同时提供的,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);
网页,防复制
|