1. ホーム
  2. jquery

[解決済み] jQuery: 特定のIdを除く、指定されたクラスのすべての要素を選択する

2022-04-25 15:52:31

質問

これはかなり簡単なことでしょう。

指定されたクラスのすべての要素を選択したい thisClass ただし、idが thisId .

に相当するものです(-/マイナスは削除を意味します)。

$(".thisClass"-"#thisId").doAction();

解決方法は?

を使用します。 :notセレクタ .

$(".thisclass:not(#thisid)").doAction();

複数のIDやセレクタがある場合は、さらにカンマで区切ればよい。

(".thisclass:not(#thisid,#thatid)").doAction();