サイト共通で設定してしまったセレクタから一部を非対象にしたい場合
[使いどころ]
後から共通処理を追加する場合等で、対象にしたくない要素がある場合。
$('a[href^=#]').click(function() { console.log('here'); });
class='hoge'を除くには
$('a[href^=#]:not(.hoge)').click(function() { console.log('here'); });
※マニュアルにあったが備忘。
Go to list of users who liked
More than 5 years have passed since last update.
サイト共通で設定してしまったセレクタから一部を非対象にしたい場合
[使いどころ]
後から共通処理を追加する場合等で、対象にしたくない要素がある場合。
$('a[href^=#]').click(function() { console.log('here'); });
class='hoge'を除くには
$('a[href^=#]:not(.hoge)').click(function() { console.log('here'); });
※マニュアルにあったが備忘。
Register as a new user and use Qiita more conveniently
Go to list of users who liked