// JavaScript Document
document.body.oncopy = function () { 
setTimeout( function () { 
  var text = clipboardData.getData("text");
  if (text) { 
   text = text + "\r\n更多精彩访问: 何苦.org(http://www.heku.org/) 本文来自："+location.href; clipboardData.setData("text", text);
  } 
    }, 100 ) 
}