要素に指定したclassが適用されているか判定するには、hasClassを使用します。
構文
- (構文)
- $(<セレクタ>).hasClass(<クラス名>);
サンプルソース2>
例)ボタンを押すと、class="hoge"が設定されているかどうかをアラート表示する
1234567891011121314151617181920212223242526
<!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(){ $('#txt1').addClass("hoge"); alert('setしました。'); }); $('#btn2').click(function(){ var flg = $('#txt1').hasClass("hoge"); alert(flg); });});</script></head><body> <input type="text" id="txt1"> <input type="button" id="btn1" value="classセット"> <input type="button" id="btn2" value="class判定"></body></html>
解説
- 結果はtrue/falseで返ります。
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(){ $('#txt1').addClass("hoge"); alert('setしました。'); }); $('#btn2').click(function(){ var flg = $('#txt1').hasClass("hoge"); alert(flg); }); }); </script> </head> <body> <input type="text" id="txt1"> <input type="button" id="btn1" value="classセット"> <input type="button" id="btn2" value="class判定"> </body> </html> |