具有不同数量子元素的多个父级,例如:
<div class="items">
<div></div>
<div>hide this child</div>
<div></div>
</div>
<div class="items">
<div></div>
<div>don't hide this child</div>
</div>
几乎可以用这个解决:
if ($(".items div:nth-child(3)").length) {
$(".items div:nth-child(2)").hide();
}
它在两个父母中隐藏了第二个 div,但它应该只隐藏在第一个父母中,因为第二个父母没有第三个孩子。
MYYA
12345678_0001
相关分类