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 Object を返しますか?
関数を使用して取得でき.eq()ます。と同じです.get()が、jQuery オブジェクトを返します。
.eq()
.get()
特定のインデックスを照会できます
var idx = 1; $('li:eq(' + idx +')')
また
var idx = 1; $("li").eq(idx)