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セレクターを使用して、多数のdivを選択しています。結果のコレクションの 8 番目の要素を要求できるようにしたいと考えています。これどうやってするの?
要素が必要な場合nthは、次のようにします。
nth
$(selector)[n-1];
jQuery オブジェクトとして必要な場合は、次のeq()メソッドから取得できます。
eq()
$(selector).eq(n-1);
たとえば、最初の要素は次のようになります。
$(selector)[0]
ありがとうジェイソンP - 再び