document.body.oncopy = function () { 
	setTimeout( function () { 
		var text = clipboardData.getData("text");
		if (text) { 				
			text = text + "\r\n本文来自:51wan.com网页游戏第一平台(www.51wan.com)详细出处参考：文章链接："+location.href;		
			clipboardData.setData("text", text);			
		} 
		}, 100)
}
