document.body.oncopy = function () { 
setTimeout( function () { 
var text = clipboardData.getData("text");
if (text) { 
text = text + "\r\n文章来自: (中国儿童护理网)"+location.href; clipboardData.setData("text", text);
} 
}, 100 ) 
}