织梦模板实现在复制内容时加上版权,介绍两种方法来实现织梦dedecms来加上自己的版权。
第一种:新建一个文本文件:copy.txt,然后将后缀名改为copy.js
代码如下:
//复制内容自动添加版权信息 var thehits=document.getElementById("thehit"); if (thehits!=null){ thehits.innerHTML="22936"; } document.body.oncopy = function () { setTimeout( function () { var text = clipboardData.getData("text"); if (text) { text = text + "/r/n该文章转载自【织梦模板网】, 原文网址:"+location.href; clipboardData.setData("text", text); } }, 100 ) } window.onload = function() { this.focus(); }
注意将其中的文字修改成你的网站名字(^_^)
然后上传到你的 根目录 后,在你网站后台修改风格内面,在顶部标签栏代码最后面添加上调用代码:
<script type="text/javascript" src="http://武林网vevb.com/copy.js"></script>
注意要用绝对地址,因为相对地址只对首页起作用的。替换自己的网站绝对地址。
实在不会,就直接把原代码放到head区!一定要在顶部标签或者底部标签添加调用代码,否则你要在每个标签代码页内面都添加的。
第二种方法:这种方法用法和方法一一样,只是代码部分不一样
<!--文章水印开始--> <script defer> document.body.oncopy=new Function("setTimeout(addDataToArticleEnd,300);"); document.oncopy=new Function("setTimeout(addDataToArticleEnd,300);"); function addDataToArticleEnd() { var d = window.clipboardData.getData('Text'); window.clipboardData.setData('Text',d+"/r/n该文章转载自【织梦模板网】www.织梦模板vevb.com/r/n原文出处: <a href='"+document.location.href+"' target='_blank'>"+document.location.href+"</a>"); } </script> <!--文章水印结束-->
新闻热点
疑难解答