gpt4 book ai didi

javascript - jQuery .nextUntil() 等效

转载 作者:行者123 更新时间:2023-11-30 07:01:21 27 4
gpt4 key购买 nike

我需要一个替代 jQuery 的 .nextUntil() 的方法。我目前正在使用 jQuery 1.3.1 并且更新它是不可能的:(

我有这个 HTML:

<h4>...</h4>
<p>...</p>
<p>...</p>
<p>...</p>
<h4>...</h4>
<p>...</p>
<p>...</p>

我有这个 jQuery 代码:

$('h4').click(function(){
$(this).nextUntil('h4').toggle();
});

但是 .nextUntil() 是在 1.4.0 中添加的 所以你知道如何在 1.3.1 中做到这一点吗?

最佳答案

您可以模拟 nextUntil() 的行为通过使用 nextAll() , slice()index()一起:

var $nextAll = $(this).nextAll();
$nextAll.slice(0, $nextAll.index("h4")).toggle();

关于javascript - jQuery .nextUntil() 等效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5916191/

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