码迷,mamicode.com
首页 > Web开发 > 详细

复制网页内容自动添加网站版权信息兼容IE谷歌火狐

时间:2016-05-11 15:13:12      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

  1.  var Sys = {}; 
  2.     var ua = navigator.userAgent.toLowerCase(); 
  3.     if( window.ActiveXObject ) 
  4.     { 
  5.         document.body.oncopy=function() 
  6.         { 
  7.             event.returnValue = false; 
  8.             var t=document.selection.createRange().text; 
  9.             var s="\r\n原文出自[佳帅个人博客] 转载请保留原文链接:"+location.href; 
  10.             clipboardData.setData(‘Text‘,t+‘\r\n‘+s); 
  11.         } 
  12.     } 
  13.     else 
  14.     { 
  15.         function addLink() 
  16.         { 
  17.             var body_element = document.getElementsByTagName(‘body‘)[0]; 
  18.             var selection; 
  19.             selection = window.getSelection(); 
  20.             var pagelink = " 原文出自[佳帅个人博客] 转载请保留原文链接:"+document.location.href; 
  21.  
  22.             var copytext = selection + pagelink; 
  23.             var newdiv = document.createElement(‘div‘); 
  24.             newdiv.style.position=‘absolute‘; 
  25.             newdiv.style.left=‘-99999px‘; 
  26.             body_element.appendChild(newdiv); 
  27.             newdiv.innerHTML = copytext; 
  28.             selection.selectAllChildren(newdiv); 
  29.             window.setTimeout 
  30.             ( 
  31.                 function() 
  32.                 { 
  33.                     body_element.removeChild(newdiv); 
  34.                 },0 
  35.             ); 
  36.         } 
  37.         document.oncopy = addLink; 
  38.     } 

复制网页内容自动添加网站版权信息兼容IE谷歌火狐

标签:

原文地址:http://www.cnblogs.com/chern2468/p/5481685.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!