去掉除当前obj之外所有文字的背景色

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','');
    }
});
}

你可能感兴趣的:(背景)