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 html()の例
- jQueryで複数の要素を選択する
- jQuery - nth-childセレクターの例
- jQuery - 隣接する兄弟セレクターの例
- jQuery - CSSクラス名とIDを持つ要素を取得する方法
- jQueryのtoggleClassの例
- jQueryのmouseover()とmouseenter()の違い
- jQuery mouseup()とmousedown()の例
- jQueryでCSSクラスを動的に追加/削除する方法
- jQuery - 子セレクタの例のみ
- jQuery - 隣接する兄弟セレクターの例
- jQueryでラジオボタンを選択する方法
- jQueryを使ってホバー上のテーブル行レコードをハイライト表示する方法
- Spring 4 MVC Ajax Hello Worldの例
- jQueryフォームセレクタの例
- jQuery - ユニバーサルセレクタの例
- jQuery mousemove()の例
- jQueryを使って実行時にJavaScriptをロードする方法
- jQuery - タグ名の取得方法