セレクタに一致するか判定するには、isを使用します。
サンプルソース
例)要素がclass="b"を持っているかどうか判定する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $("#btn1").click(function(){ $('ul li').each(function(){ var result = $(this).is('.b'); //.bを持っているか判定する console.log(result); }); }); }); </script> </head> <body> <input type="button" id="btn1" value="ボタン"> <ul> <li class="a">aa</li> <li class="b">bb</li> <li class="c">cc</li> </ul> </body> </html> |
- (結果)
- false true false
解説
- 合致したらtrue、合致しなければfalseが返ります。