function removeColor(obj,color){//去掉除当前obj之外所有文字的背景色(zty)
var bgC, inText;
$('*').each(function() {
var bgC_hex;
bgC = $(this).css('backgroundColor');
if (this!=obj&&bgC === color) {
$(this).css('backgroundColor','');
}
});
}
var bgC, inText;
$('*').each(function() {
var bgC_hex;
bgC = $(this).css('backgroundColor');
if (this!=obj&&bgC === color) {
$(this).css('backgroundColor','');
}
});
}