admin管理员组文章数量:1345173
I need an alternative for jQuery's .nextUntil()
. I'm currently using jQuery 1.3.1
and updating it is out of the question :(
I have this HTML:
<h4>...</h4>
<p>...</p>
<p>...</p>
<p>...</p>
<h4>...</h4>
<p>...</p>
<p>...</p>
and I have this jQuery code:
$('h4').click(function(){
$(this).nextUntil('h4').toggle();
});
but .nextUntil()
is added in 1.4.0
So do you have an idea how to do that in 1.3.1
?
I need an alternative for jQuery's .nextUntil()
. I'm currently using jQuery 1.3.1
and updating it is out of the question :(
I have this HTML:
<h4>...</h4>
<p>...</p>
<p>...</p>
<p>...</p>
<h4>...</h4>
<p>...</p>
<p>...</p>
and I have this jQuery code:
$('h4').click(function(){
$(this).nextUntil('h4').toggle();
});
but .nextUntil()
is added in 1.4.0
So do you have an idea how to do that in 1.3.1
?
- see if this helps stackoverflow./q/3943667/273200 – Bala R Commented May 6, 2011 at 19:38
- Use a loop with a conditional statement. – Peter Olson Commented May 6, 2011 at 19:39
-
1
@Bala R I saw taht, but it still uses
.nextUntil()
– Teneff Commented May 6, 2011 at 19:49 - You can run two versions of jQuery at once.. You'll keep the patibility for your existing stuff, and still be able to use the newer features. – jrn.ak Commented May 6, 2011 at 19:55
- @jnpcl I know that, but its not a good solution I think :) – Teneff Commented May 7, 2011 at 7:39
5 Answers
Reset to default 6You can emulate the behavior of nextUntil() by using nextAll(), slice() and index() together:
var $nextAll = $(this).nextAll();
$nextAll.slice(0, $nextAll.index("h4")).toggle();
$('h4').click(function() {
$(this).nextAll().each(function() {
if ($(this).is('h4')) { return false; }
$(this).toggle();
})
});
Not tested. Tested by @ingo :)
Not tested, but something like this:
function nextUntil($start, until)
{
var matches = [];
for (var e = $start.next(); e.length !== 0 && !e.is(until); e = e.next())
{
matches.push(e);
}
return $(matches);
}
Or use nextAll()
:
function nextUntil_v2($start, until)
{
var matches = [];
$start.nextAll().each(function ()
{
if ($(this).is(until)) return false;
matches.push(this);
});
return $(matches);
}
I did it like this
$('h4').click(function(){
$n = $(this).next();
while($n.is('h4') == false) {
$n.toggle();
$n = $n.next();
}
});
If someone still needs to use jQuery 1.3: There is the jQuery Untils plugin, which got added to jQuery 1.4.0
:
jQuery Untils provides three very simple, but very useful methods: nextUntil, prevUntil, and parentsUntil. These methods are based on their nextAll, prevAll, and parents counterparts, except that they allow you to stop when a certain selector is reached. Elements are returned in “traversal order”.
...
Tested with jQuery 1.3.2 in Internet Explorer 6-8, Firefox 2-3.7, Safari 3-4, Chrome 4-5, Opera 9.6-10.1.
本文标签: javascriptjQuery nextUntil() equivalentStack Overflow
版权声明:本文标题:javascript - jQuery .nextUntil() equivalent - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743809343a2542774.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论