复制网页内容自动添加版权信息

quality,Q 70

1638625258 20211204134058 61ab6fea20189

摘要

该功能大家经常会遇到,复制粘贴某网页文字后,里面有该网站的一些版本信息,可起到提醒转载文章者,注意保留原文链接的作用。

1638625258 20211204134058 61ab6fea2367f

将代码添加到网页head 头部,WordPress主题可以将代码添加到头部模板header.php:<?php wp_head(); ?>,上面即可。

不要忘记将代码放在

  1. <script =“text/javascript”> 代码 </script>

代码一

  1. function addLink() {
  2.     var selection = window.getSelection();
  3.     pagelink = “. 原文出自[知更鸟] 转载请保留原文链接: “ + document.location.href;
  4.     copytext = selection + pagelink;
  5.     newdiv = document.createElement(‘div’);
  6.     newdiv.style.position = ‘absolute’;
  7.     newdiv.style.left = ‘-99999px’;
  8.     document.body.appendChild(newdiv);
  9.     newdiv.innerHTML = copytext;
  10.     selection.selectAllChildren(newdiv);
  11.     window.setTimeout(function () {
  12.         document.body.removeChild(newdiv);
  13.     }, 100);
  14. }
  15. document.oncopy = addLink;

代码二

  1. function addLink() {
  2.     var body_element = document.body;
  3.     var selection;
  4.     selection = window.getSelection();
  5.     if (window.clipboardData) { // Internet Explorer
  6.         var pagelink =“\r\n\r\n 原文出自[ 知更鸟 ] 转载请保留原文链接: “+document.location.href+“”;
  7.         var copytext = selection + pagelink;
  8.         window.clipboardData.setData (“Text”, copytext);
  9.         return false;
  10.     } else {
  11.         var pagelink = ” 原文出自[ 知更鸟 ] 转载请保留原文链接: “+document.location.href+“”;
  12.         var copytext = selection + pagelink;
  13.         var newdiv = document.createElement(‘div’);
  14.         newdiv.style.position=’absolute’;
  15.         newdiv.style.left=’-99999px’;
  16.         body_element.appendChild(newdiv);
  17.         newdiv.innerHTML = copytext;
  18.         selection.selectAllChildren(newdiv);
  19.         window.setTimeout(function() {
  20.         body_element.removeChild(newdiv);
  21.         },0);
  22.     }
  23. }
  24. document.oncopy = addLink;

添加以上代码后,别人在你网站复制任何文字内容,粘贴时都会自动带上版权信息,使用时修改其中的版本信息,貌似不支持低版本IE。

提示

修改模板后,记得将模板编码改为:UTF-8 无BOM(无签名),否则提示中的汉字会乱码,建议使用专门的编辑工具,比如:Notepad++(免费)编辑修改主题模板文件。

参考:

  • http://stackoverflow.com/questions/2026335/how-to-add-extra-info-to-copied-web-text
  • http://bavotasan.com/2010/add-a-copyright-notice-to-copied-text/
  • http://techwelkin.com/add-source-link-copyright-copied-text-clipboard

类似文章