开发者

jquery skip list item

开发者 https://www.devze.com 2022-12-30 17:30 出处:网络
Is there a way for a jQuery function to \"skip\" an li? Such as Having 3 list items, you click on the 1st one, it calls a next() function, and skips the 2nd li and goes to the 3rd.

Is there a way for a jQuery function to "skip" an li? Such as Having 3 list items, you click on the 1st one, it calls a next() function, and skips the 2nd li and goes to the 3rd.

Current code is here:

$('ul.gallery li').click(function() { $(window).scrollTo($(this).next('li'), 800, {easing:'easeOutCirc', axis:'x', offset:-50 } ); });

I want it to skip the immediate li and go to the on开发者_运维百科e after that.


The easiest approach would be to just call .next() again, like this:

$('ul.gallery li').click(function() {
    $(window).scrollTo($(this).next('li').next('li'), 
                       800, 
                       {easing:'easeOutCirc', axis:'x', offset:-50 });
});

If the <li> you wanted had a specific class, like this:

<ul>
  <li>Stuff</li>
  <li>Stuff 2</li>
  <li class="selectMe">Stuff 3</li>
</ul>

You could use .nextAll() instead of .next(), like this:

$('ul.gallery li').click(function() {
    $(window).scrollTo($(this).nextAll('li.selectMe:first'), 
                       800, 
                       {easing:'easeOutCirc', axis:'x', offset:-50 });
});


add a class to the LI that you want to skip and use :not

and example from jQuery Documentation

$("input:not(:checked) + span").css("background-color", "yellow");
0

精彩评论

暂无评论...
验证码 换一张
取 消