dedecms織夢COPY頁面內容,自動在后面加上網站信息,利于SEO的標簽如下,加在header.htm模板里面
<script type="text/javascript"> document.body.oncopy = function () {setTimeout( function () { var text = clipboardData.getData("text");if (text) { text = text + "\r\n本篇文章來源于 www.地址.COM 原文鏈接:"+location.href;clipboardData.setData("text", text); } }, 100 ) } </script>