gpt4 book ai didi

javascript - 有没有更好的方法来检测 nextUntil 是否定期停止?

转载 作者:行者123 更新时间:2023-11-30 05:34:25 26 4
gpt4 key购买 nike

我想知道是否有一种性能良好的方法来查明 .nextUntil() 是否在未匹配指定选择器的情况下停止。

如果选择器不匹配任何元素,

.nextUntil() 返回与 .nextAll() 相同的结果。

因此可以使用:

if ($("#id").nextUntil(".someclass").length === $("#id").nextAll().length) {
//do some stuff if there was no match
}

但是有更好的解决方案吗?

最佳答案

如果它在没有匹配的情况下停止,则意味着您的对象中有最后一个 child 。您可以使用以下内容:

if (!$("#id").nextUntil(".someclass").is(':last-child'))

Test it here

关于javascript - 有没有更好的方法来检测 nextUntil 是否定期停止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24830522/

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