通過右鍵查看源文件發現如下代碼:
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>
完整的結合就是
提示:您可以先修改部分代碼再運行
當然,一般都會同時提供的,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);