我想检查div是否包含类“error”的子节点,但条件是错误类显示不等于none。 (含义错误类必须是可见的。
如何更改我的代码:
$(".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");
}
});
答案 0 :(得分:9)
:visible
选择器:
if($(this).find(".error:visible").length == 0)
$widthAdj.css("height","48px");
} else {
$widthAdj.css("height","63px");
}