DEDECMS复制文章带上“文章来自+文章网址”

2017-04-20 23:12:50 dedecms

在<head></head>之间加上这样一段代码就OK了。。。  
 

  1. <script language="Javascript" type="text/Javascript">   <!--   
  2. document.body.oncopy = function () {    setTimeout( function () {   
  3.   var text = clipboardData.getData("text");     if (text) {   
  4.    texttext = text + "\r\n文章来自:"+location.href;      clipboardData.setData("text", text);   
  5.   }     }, 100 )   
  6. }   -->   
  7. </script>