セレクター(Selectors)に関する jQuery API。
Basic
基本 Hierarchy
階層 Attribute
属性 Form
フォーム Basic Filter
基本的フィルタ Child Filter
子要素フィルタ Visibility Filter
可視フィルタ Content Filter
コンテンツフィルタ
基本 Hierarchy
階層 Attribute
属性 Form
フォーム Basic Filter
基本的フィルタ Child Filter
子要素フィルタ Visibility Filter
可視フィルタ Content Filter
コンテンツフィルタ
Basic / 基本
CSS1の仕様に基づくセレクター。
Hierarchy / 階層
要素の親子関係・前後関係などに基づくセレクター。
Attribute / 属性
属性に基づくセレクター。
- jQuery( '[attribute!=”value”]' )
- jQuery( '[attribute$=”value”]' )
- jQuery( '[attribute*=”value”]' )
- jQuery( '[attribute=”value”]' )
- jQuery( '[attributeFilter1][attributeFilter2][attributeFilterN]' )
- jQuery( '[attribute]' )
- jQuery( '[attribute^=”value”]' )
- jQuery( '[attribute|=”value”]' )
- jQuery( '[attribute~=”value”]' )
Form / フォーム
フォーム(Form)に関するセレクター。
- jQuery( ':button' )
- jQuery( ':checkbox' )
- jQuery( ':checked' )
- jQuery( ':disabled' )
- jQuery( ':enabled' )
- jQuery( ':file' )
- jQuery( ':focus' )
- jQuery( ':hidden' )
- jQuery( ':image' )
- jQuery( ':input' )
- jQuery( ':password' )
- jQuery( ':radio' )
- jQuery( ':reset' )
- jQuery( ':selected' )
- jQuery( ':submit' )
- jQuery( ':text' )
Basic Filter / 基本的フィルタ
インデックス番号などの基本的フィルタリング。
Child Filter / 子要素フィルタ
子要素に関するフィルタリング。
- jQuery( ':first-child' )
- jQuery( ':first-of-type' )
- jQuery( ':last-child' )
- jQuery( ':last-of-type' )
- jQuery( ':nth-child( equation )' )
- jQuery( ':nth-child( even )' )
- jQuery( ':nth-child( index )' )
- jQuery( ':nth-child( odd )' )
- jQuery( ':nth-last-child( equation )' )
- jQuery( ':nth-last-child( even )' )
- jQuery( ':nth-last-child( index )' )
- jQuery( ':nth-last-child( odd )' )
- jQuery( ':nth-last-of-type( equation )' )
- jQuery( ':nth-last-of-type( even )' )
- jQuery( ':nth-last-of-type( index )' )
- jQuery( ':nth-last-of-type( odd )' )
- jQuery( ':nth-of-type( equation )' )
- jQuery( ':nth-of-type( even )' )
- jQuery( ':nth-of-type( index )' )
- jQuery( ':nth-of-type( odd )' )
- jQuery( ':only-child' )
- jQuery( ':only-of-type' )
Visibility Filter / 可視フィルタ
可視(表示/非表示)に関するフィルタリング。
Content Filter / コンテンツフィルタ
コンテンツに関するフィルタリング。