我有一個表格,每行都有一個複選框,並在thead
處有一個主複選框。我的代碼:如何選中或取消選中一個複選框來檢查並取消選中html表格中的所有複選框?
<table border="1">
<thead>
<tr>
<th><input type="checkbox" id="allcb" name="allcb"/></th>
<th>values</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" id="cb1" name="cb1"/></td>
<td>value1</td>
</tr>
<tr>
<td><input type="checkbox" id="cb2" name="cb2"/></td>
<td>value2</td>
</tr>
<tr>
<td><input type="checkbox" id="cb3" name="cb3"/></td>
<td>value3</td>
</tr>
</tbody>
</table>
(也嘗試here)
誰能幫幫我,怎麼做,如果我檢查在頂部的主複選框,所有複選框將被選中,如果我取消主,所有複選框將被取消選中。 謝謝,如果你幫我!