通过它的类名选择偶数行的问题:
$(".recDetails table tr").each(function() {
if( !($(this).css("display") == "none")){
$(this).addClass("block");
};
});
$(".recDetails table").each(function(i) {
$(this).find("tr.block:even").css("background-color", "#fff");
$(this).find("tr.block:odd").css("background-color", "#efefef");
});
它正在计算所有“ tr ”,因此:
(1) tr class="block"
(2) tr
(3) tr class="block"