document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "本文来自: 快讯网(http://www.kxnews.cn/house/zx/2013/0520/220897.html),转载请注明来源。";
clipboardData.setData("text", text);
}
}, 100 )
}