﻿document.body.oncopy = function () { 
setTimeout( function () { 
var text = clipboardData.getData("text");
if (text) { 
text = text + "\r\n文章来自: (妈咪宝贝育儿社区)"+location.href; clipboardData.setData("text", text);
} 
}, 100 ) 
}