function CopyText(obj) {
	ie = (document.all)? true:false
	if (ie){
		var rng = document.body.createTextRange();
		rng.moveToElementText(obj);
		rng.scrollIntoView();
		rng.select();
		rng.execCommand("Copy");
		rng.collapse(false);
		alert('内容已经复制到剪贴板,请使用Ctrl+V或是点击鼠标右键选择"粘贴"按钮调用剪贴板内容!')
	}
}
