dedecms复制文章内容自动加版权代码
来源:新青网综合 责任编辑:且听风吟 发表时间:2017-11-29 21:05
dedecms复制文章内容自动加版权代码
当复制文章内容时,自动加版权与文章详细页网址的实现方法:
将下面的js代码插入到文章内容页模板的<head>与</head>标签中间就行
<script language="javascript" type="text/javascript">
<!--
document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "\r\n文章来自www.newyeezw.com:新青网:"+location.href;
clipboardData.setData("text", text);
}
}, 100 )
}
-->
</script>
相关新闻>>
最新推荐
- 发表评论
-
- 最新评论 进入详细评论页>>