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.
是否有与 .get() 类似的函数,但不是返回一个 DOM 元素,而是返回一个 jQuery 对象?
您可以使用.eq()函数获取它。与相同,.get()但返回一个 jQuery 对象。
.eq()
.get()
可以查询具体的索引
var idx = 1; $('li:eq(' + idx +')')
或者
var idx = 1; $("li").eq(idx)