document.body.oncopy = function () { 
	setTimeout( function () { 
		var text = clipboardData.getData("text");
		if (text) { 
			text = text + "\r\n信息来自: 武汉网址(www.whwz.com) 详文参考："+location.href; clipboardData.setData("text", text);
		} 
	}, 100 ) 
}