现在很多网站都有防盗设置,防止采集就是其中比较多见的防盗设施。这里博主推荐两种方法实现网站禁止他人查看源代码,复制粘贴网页内容的方法,可以在一定程度上防止网站原创内容的流失。
1、禁止鼠标右键和划词代码
<script language="JavaScript"> document.oncontextmenu=new Function("event.returnValue=false;"); document.onselectstart=new Function("event.returnValue=false;"); </script>
使用方法:直接将代码放入指定网页即可,若是全站禁止鼠标右键,可以将以上代码放入网站的footer文件中。
2、禁止选择文本代码
<script type="text/javascript"> var omitformtags=["input", "textarea", "select"]; omitformtagsomitformtags=omitformtags.join("|"); function disableselect(e){ if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1){ return false; } } function reEnable(){ return true; } if (typeof document.onselectstart!="undefined"){ document.onselectstart=new Function ("return false"); }else{ document.onmousedown=disableselect; document.onmouseup=reEnable; } </script>
使用方法:鼠标左键在网页中被禁用,无法使用Ctrl+C快捷键来复制粘贴网站内容。