Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
451 views
in Technique[技术] by (71.8m points)

jquery - Find the next element that is not immediate?

I want to find the first span element after class counter, in code something like this:

<div class="counter"></div>
<p></p>
<span></span>

It seems like the next() function only finds the immediate next element, so something like this:

$(".counter").next("span")

Won't work. The way I have been using is a bit lengthy and I was wondering if there was a shorter way, it is this:

$(".counter").nextAll("span").eq(0)

I think the closest() method in jQuery 3 will do the trick, but I am using 1.2.6 -- is there a better way to do this (am I just using next() wrong?)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Similar to the marked answer but looks a little cleaner using the :first selector:

$('.counter').nextAll('span:first')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...