标签: jquery
使用这两种方法检索集合中的第一个元素有什么区别?
答案 0 :(得分:10)
取自jQuery 1.7.1的live source code:
,first:function(){return this.eq(0)},last:function(){return this.eq(-1)}
因此,您怀疑.first()只是一个调用.eq()的包装器。
.first()
.eq()
结论:没有任何区别。 :)
答案 1 :(得分:1)
据我所知,没有区别。