分析:
1、全选和取消全选:让下方所有复选框的checked属性(选中状态)跟随全选按钮
2、下方的所有复选框选中全选按钮才选中,其中一个不选中全选按钮都不选中
每次点击下面的某个复选框都要循环检查下方复选框是否都被选中
flag保存全选按钮的选中状态
HTML结构:
<table border="1" cellspacing="" cellpadding="0">
<tr>
<th><input type="checkbox" id="selectAll"/>全选</th>
<th>姓名</th>
<th>性别</th>
<th>年龄</th>
</tr>
<tr>
<td><input type="checkbox"/></td>
<td>张三</td>
<td>男</td>
<td>20</td>
</tr>
<tr>
<td><input type="checkbox"/></td>
<td>张三1</td>
<td>男</td>
<td>20</td>
</tr>
<tr>
<td><input type="checkbox