$(function () { if ($(".chk_all")) { $(".chk_all").click(function () {
$("input[checkname='choice']").prop("checked", $(this).prop("checked"));
});
}
});
如何使用:
<table >
<tr>
<th><input type="checkbox" class="chk_all" /></th>
</tr>
<tr>
<td><input type="checkbox" class="check" checkname="choice" /></td>
</tr>
在遍历数据的时候给他指定值,提交后的就会是相应的选中项
OK,结束。。。