jQuery –セレクターの例ではありません
jQueryでは、「not」を使用して、セレクターと一致しないすべての要素を選択します。
例
-
$(‘p:not(.class-p1)’) – selects all elements matched by
that do NOT have a class name of “class-p1”.
-
$(‘li:not(:only-child)’) – selects all elements matched by
- that are NOT the only child of their parent.
-
$(‘li:not(:first-child)’) – selects all elements matched by
that are NOT the first child of their parent. jQueryの例
jQueryの「not」セレクターの使用方法を示す簡単な例は、ボタンをクリックして再生します。
jQuery not example jQuery not example
- class-ul - #1
- class-ul - #2
- class-ul - #3
- class-ul - #4
- class-ul - #5
- id1 - #1
class - #p1
class - #p2
Related
- jQuery - 子セレクタの例のみ
- jQueryキーボードイベントの例
- jQuery mouseup()とmousedown()の例
- jQuery - タグ名の取得方法
- jQuery - 子セレクタの例
- jQuery - Descendantセレクタの例
- jQuery - セレクタのサンプルが含まれています
- jQuery - CSSクラス名とIDを持つ要素を取得する方法
- jQueryを使って他の要素のイベントハンドラをトリガする方法
- Javascript - jQueryコード内の関数を呼び出す方法
- jQuery - 一般的な兄弟セレクターの例
- jQueryで複数の要素を選択する
- jQueryのclick()とdblclick()の例
- jQueryでラジオボタンを選択する方法
- JavaScript ArrayをJSONに変換する方法
- jQuery - タグ名の取得方法
- jQueryのmouseover()とmouseenter()の違い
- Spring MVC jQueryオートコンプリートの例
- jQueryのドロップダウンボックス値を設定する方法
- jQuery - タグの値または要素の内容を取得する方法