在网上找了很多列子都不能用,所以,自己写了一个,居然可以了。附上代码
html代码
<th width="5"><label><input type="checkbox" id="firstCheckBox"></label></th>
<th width="5"><label><input type="checkbox" class="J_check_all" name="id[]" id="checkbox" value="{$vo.id}"></label></th>
<script> $("#firstCheckBox").click(function(){ $('input[id="checkbox"]').attr("checked",this.checked); }); </script>
这一段就是把第一个checkbox的状态传给其他的checkbox。