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 |
<!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(){ //標準のボタン $("#btn1").button(); //★マークのボタン $("#btn2").button({ icons:{ primary: "ui-icon-star" //★アイコン } ,text: true //アイコンのみにしたい場合はfalseにする }); }); </script> </head> <body> <button id="btn1">標準ボタン</button> <button id="btn2">星ボタン</button> </body> </html> |
実行サンプル
上記サンプルの実行結果です。
標準ボタン⇒
★ボタン⇒
★ボタン⇒
解説
- jQueryUI(Button)公式ページ ⇒ https://jqueryui.com/button/