复制你文章时自动加上版权信息

不指定
时间: 2008/03/03 20:20 | 作者: 小铭铭
header.htm  
找到:

<body onkeydown="if(event.keyCode==27) return false;">

在下面加:


<script type="text/javascript">
document.body.oncopy = function () {
setTimeout( function () {
  var text = clipboardData.getData("text");
  if (text) {
   text = text + "\r\n文章来自: 铭铭的世界(www.041151.com) 详细出处参考:"+location.href; clipboardData.setData("text", text);
  }
    }, 100 )
}
</script>
| DZ-插件 | 引用(0) | 评论(0) | 阅读(389)