jQuery1.8.0帮助手册筛选eq(index|-index)
上一篇:val([val|fn|arr... 下一篇:first()

eq(index|-index)

返回值:jQueryeq(index|-index)

概述

获取第N个元素

参数

indexIntegerV1.1.2

一个整数,指示元素基于0的位置,这个元素的位置是从0算起。

-indexIntegerV1.4

一个整数,指示元素的位置,从集合中的最后一个元素开始倒数。(1算起)

示例

参数index描述:

获取匹配的第二个元素

HTML 代码:

This is just a test.

So is this

jQuery 代码:
$("p").eq(1)
结果:
[ 

So is this

]

参数-index描述:

获取匹配的第二个元素

HTML 代码:

This is just a test.

So is this

jQuery 代码:
$("p").eq(-2)
结果:
[ 

This is just a test.

]
上一篇:val([val|fn|arr... 下一篇:first()