HTML
<div id="test">
<input type="checkbox" id="check1" class="checkall"/><label for="check1">1</label>
<input type="checkbox" id="check2" class="checkall"/><label for="check2">2</label>
<input type="checkbox" id="check3" class="checkall"/><label for="check3">3</label>
</div>
<br>
<input type="button" id="selectall" value="Select All">
jQuery
$("#test").buttonset();
$("#selectall").button();
$("#selectall").toggle(
function () { $("#test .checkall").prop("checked", true).buttonset("refresh"); },
function () { $("#test .checkall").prop("checked", false).buttonset("refresh"); }
);
我想全选按钮被点击。但它不会在视觉上发生变化。如果您能提供帮助,我将不胜感激。
演示:http: //jsfiddle.net/fenerama/zv8e4/