复制网页内容自动添加九游会官网真人游戏第一品牌的版权信息 -j9九游会真人游戏第一品牌

将代码添加到网页head 头部,wordpress主题可以将代码添加到头部模板header.php:,上面即可。

不要忘记将代码放在

  1. "text/javascript"> 代码 

代码一

  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 (免费)编辑修改主题模板文件。


发表评论 登录

目前评论:0