サンプルコード
1 2 3 4 5 6 7 8 9 10 11 |
<button>click</button> <input type="checkbox" id="check"> <label for="check">check</label> <div id="set"> <input type="radio" id="radio1" name="radio"> <label for="radio1">1</label> <input type="radio" id="radio2" name="radio"> <label for="radio2">2</label> <input type="radio" id="radio3" name="radio"> <label for="radio3">3</label> </div> |
1 2 3 4 |
$('button').button(); $('#check').button(); $('input[type=radio]').button(); $('#set').buttonset(); |
参考サイト
Button | jQuery UI
https://jqueryui.com/button/