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 empty()とremove()の例
- jQuery - 一般的な兄弟セレクターの例
- jQueryでCSSクラスを動的に追加/削除する方法
- jQueryでラジオボタンを選択する方法
- jQueryのbind()とunbind()の例
- jQuery - 子セレクタの例のみ
- jQuery - 隣接する兄弟セレクターの例
- jQuery - CSSクラス名とIDを持つ要素を取得する方法
- jQuery - 子セレクタの例のみ
- jQueryでテキストボックス値を取得する方法
- jQueryを使ってチェックボックスをチェック/チェック解除する方法
- jQuery - セレクタのサンプルが含まれています
- jQueryでテーブルZebra Stripesエフェクトを作成する方法
- jQuery - 子セレクタの例
- jQuery clone()の例
- jQuery - nth-childセレクターの例
- jQuery before()とinsertBefore()の例
- jQuery - ユニバーサルセレクタの例