我想检查 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");
}
});