Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用这两种方法检索集合中的第一个元素有什么区别?
取自jQuery 1.7.1的实时源代码:
,first:function(){return this.eq(0)},last:function(){return this.eq(-1)}
因此,您怀疑.first()这只是一个包装器调用.eq().
.first()
.eq()
结论:没有任何区别。:)
据我所知,没有区别。