6

我想检查 div 是否包含具有“错误”类的子项,但条件是错误类显示不等于无。(意思是错误类必须是可见的。

如何在下面更改我的代码:

 $(".related_field").each(function(){
     var $widthAdj = $(this).find(".autoDiv");
     if($(this).find(".error").length == 0){  //MUST BE VISIBLE "ERROR" CLASS ONLY
        $widthAdj.css("height","48px");
     } else {
        $widthAdj.css("height","63px");
     }
 });
4

1 回答 1

9

你的意思是这样吗?使用:visible选择器:

if($(this).find(".error:visible").length == 0)
    $widthAdj.css("height","48px");
} else {
    $widthAdj.css("height","63px");
}
于 2013-03-27T09:08:51.287 回答