最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - Select element by index (multiple elements of same class) - Stack Overflow

matteradmin4PV0评论

Is there a way to select a element by index with Javascript or jQuery? For instance:

<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>

Under jQuery I could get the length as 4, now is there a way to select and then manipulate a element of "div.item" based on its index number?

Is there a way to select a element by index with Javascript or jQuery? For instance:

<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>

Under jQuery I could get the length as 4, now is there a way to select and then manipulate a element of "div.item" based on its index number?

Share Improve this question asked Jul 22, 2010 at 17:22 GeeGee 131 silver badge3 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 5

http://api.jquery./eq/

$("div.item").eq(0) will give you the first element.

You could use the .eq() selector for this job:

var element = $('div.item:eq(3)');
$('div.item:eq(4)');

this code will select the 4th div with .item class

$('div.item:eq(3)') or $("div.item").eq(3) or $("div.item").get(3)

If you are talking about getting the "element", the third option returns the DOM element, versus the first two that return the jQuery object containing the DOM element.

The first two are very similar. The difference is that the first one puts "eq" inside the query so you can only manipulate that single element. If you use the second one, you can do something like $("div.item").css('background','red').eq(3).css('background','blue') which cannot be done so easily using the other two methods.

Post a comment

comment list (0)

  1. No comments so far