gpt4 book ai didi

javascript - 选择除 nth-child() jquery 之外的所有元素

转载 作者:行者123 更新时间:2023-12-03 04:17:17 25 4
gpt4 key购买 nike

在任何地方都找不到这个

假设我有 5 个这样的 div

<div class="wrapper">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>

我的 jquery 选择器

$('.wrapper div:nth-child(3)')

这很棒,但是如何选择除 nth-child(3) 之外的所有 div?我知道我可以组合两个过滤器,如下所示:

$('.wrapper div:gt(3)')
$('.wrapper div:lt(3)')

我尝试链接 :nth-child():not() 它返回 nth-child

有更好的方法吗?

最佳答案

这样就可以了:

$('.wrapper > div:not(:nth-child(3))')

如果您实际上只想要直接子元素而不是所有不是其直接父元素的第三个子元素的匹配 div 后代,则 > 是必需的。

关于javascript - 选择除 nth-child() jquery 之外的所有元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44091710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com