端くれプログラマの備忘録 jQuery UI [jQuery UI] 基本メモ: Button

[jQuery UI] 基本メモ: Button

サンプルコード

<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>
$('button').button();
$('#check').button();
$('input[type=radio]').button();
$('#set').buttonset();

参考サイト

Button | jQuery UI
https://jqueryui.com/button/