document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "本文来自: 中讯网(http://www.zxwnews.com/house/2012/0518/118259.html),转载请注明来源。";
clipboardData.setData("text", text);
}
}, 100 )
}