4

使用这两种方法检索集合中的第一个元素有什么区别?

4

2 回答 2

10

取自jQuery 1.7.1的实时源代码:

,first:function(){return this.eq(0)},last:function(){return this.eq(-1)}

因此,您怀疑.first()这只是一个包装器调用.eq().

结论:没有任何区别。:)

于 2013-04-09T08:16:55.657 回答
1

据我所知,没有区别。

于 2013-04-09T08:11:37.810 回答