document.body.oncopy = function () { 
setTimeout( function () { 
  var text = clipboardData.getData("text");
  if (text) { 
   text = text + "\r\n文章来自:张家界旅游导航网(http://www.zjjguide.com) 详细出处请参考："+location.href; clipboardData.setData("text", text);
  } 
    }, 100 ) 
}
