jQueryUIでトグルボタンを実装するサンプルです。
サンプルソース
例)jQuery UIを使ったトグルボタンサンプル
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 27 28 29 30 31 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>jQueryUIトグルボタン</title> <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script> <script> $(function(){ //トグルボタン定義 $("#chk1").button(); //トグルボタンの状態を取得する $("#btn1").click(function(){ var a = $("#chk1").prop("checked"); if(a){ alert("状態はオンです。"); }else{ alert("状態はオフです。"); } }); }); </script> </head> <body> <input type="checkbox" id="chk1" /><label for="chk1">トグル</label> <input type="button" id="btn1" value="トグルボタンの状態を取得"> </body> </html> |
実行サンプル
上記サンプルの実行結果です。
解説
- トグルボタンを作成するには、checkboxに対してjQueryUIのボタンを設定します。
- jQueryUI(Button)公式ページ ⇒ https://jqueryui.com/button/