关键代码
HTML
<table id="table">
<thead>
<th><input class="group-checkable" type="checkbox" data-set="#table .checkboxes"/></th>
</thead>
<tbody>
<tr><td><input class="checkboxes" type="checkbox"/></td></tr>
<tr><td><input class="checkboxes" type="checkbox"/></td></tr>
<tr><td><input class="checkboxes" type="checkbox"/></td></tr>
</tbody>
</table>
JavaScript
$(function(){
$('#table').find('.group-checkable').change(function(){
var set = $(this).attr('data-set');
var checked = $(this).is(':checked');
$('set').each(function(){
if(checked){
$(this).prop('checked', true);
} else {
$(this).prop('checked', false);
}
})
})
})