最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin2浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论