Child Filter / 子要素フィルタ

子要素に関するフィルタリング。

  • jQuery( ':first-child' )

    jQuery API の jQuery( ':first-child' ) は、各親要素内のすべての先頭の子要素を選択する。

  • jQuery( ':first-of-type' )

    jQuery API の jQuery( ':first-of-type' ) は、兄弟要素の先頭の要素(兄要素)を選択する。

  • jQuery( ':last-child' )

    jQuery API の jQuery( ':last-child' ) は、各親要素内のすべての最後の子要素を選択する。

  • jQuery( ':last-of-type' )

    jQuery API の jQuery( ':last-of-type' ) は、兄弟要素の最後の要素(弟要素)を選択する。

  • jQuery( ':nth-child( equation )' )

    jQuery API の jQuery( ':nth-child( equation )' ) は、equation に指定した算式に一致するインデックス番号の子要素を選択する。equation(算式)を、「3n」とした場合、「3」の倍数に一致するインデックス番号の子要素を選択する。

  • jQuery( ':nth-child( even )' )

    jQuery API の jQuery( ':nth-child( even )' ) は、インデックス番号が偶数の子要素を選択する。

  • jQuery( ':nth-child( index )' )

    jQuery API の jQuery( ':nth-child( index )' ) は、index に指定した順番の子要素を選択する。

  • jQuery( ':nth-child( odd )' )

    jQuery API の jQuery( ':nth-child( odd )' ) は、インデックス番号が奇数の子要素を選択する。

  • jQuery( ':nth-last-child( equation )' )

    jQuery API の jQuery( ':nth-last-child( equation )' ) は、最後の子要素から数えた順番が、 equation に指定した算式に一致する順番である子要素を全て選択する。

  • jQuery( ':nth-last-child( even )' )

    jQuery API の jQuery( ':nth-last-child( even )' ) は、最後の子要素から数えた順番が偶数である子要素を全て選択する。

  • jQuery( ':nth-last-child( index )' )

    jQuery API の jQuery( ':nth-last-child( index )' ) は、最後の子要素から数えた順番が、 index に指定した順番である子要素を選択する。

  • jQuery( ':nth-last-child( odd )' )

    jQuery API の jQuery( ':nth-last-child( odd )' ) は、最後の子要素から数えた順番が奇数である子要素を全て選択する。

  • jQuery( ':nth-last-of-type( equation )' )

    jQuery API の jQuery( ':nth-last-of-type( equation )' ) は、兄弟要素うち、最後の要素から数えた順番が、 equation に指定した算式に一致する順番である要素を全て選択する。

  • jQuery( ':nth-last-of-type( even )' )

    jQuery API の jQuery( ':nth-last-of-type( even )' ) は、兄弟要素うち、最後の要素から数えた順番が、 偶数番号である要素を全て選択する。

  • jQuery( ':nth-last-of-type( index )' )

    jQuery API の jQuery( ':nth-last-of-type( index )' ) は、兄弟要素うち、最後の要素から数えた順番が、 index に指定した順番である要素を選択する。

  • jQuery( ':nth-last-of-type( odd )' )

    jQuery API の jQuery( ':nth-last-of-type( odd )' ) は、兄弟要素うち、最後の要素から数えた順番が、 奇数番号である要素を全て選択する。

  • jQuery( ':nth-of-type( equation )' )

    jQuery API の jQuery( ':nth-of-type( equation )' ) は、兄弟要素うちの equation に指定した算式に一致するインデックス番号の要素を全て選択する。equation(算式)を、「3n」とした場合、「3」の倍数に一致するインデックス番号の子要素を選択する。

  • jQuery( ':nth-of-type( even )' )

    jQuery API の jQuery( ':nth-of-type( even )' ) は、インデックス番号が偶数の兄弟要素を全て選択する。

  • jQuery( ':nth-of-type( index )' )

    jQuery API の jQuery( ':nth-of-type( index )' ) は、兄弟要素うちの index に指定した順番の要素を選択する。

  • jQuery( ':nth-of-type( odd )' )

    jQuery API の jQuery( ':nth-of-type( odd )' ) は、インデックス番号が奇数の兄弟要素を全て選択する。

  • jQuery( ':only-child' )

    jQuery API の jQuery( ':only-child' ) は、親要素の唯一の子要素であるすべての要素を選択する。

  • jQuery( ':only-of-type' )

    jQuery API の jQuery( ':only-of-type' ) は、兄弟要素を持たない全ての要素を選択する。

スポンサード リンク