h5写table行的复选框
时间: 2024-03-03 08:53:55 浏览: 120
复选框控件-H5表格、表单、框架
你可以使用以下代码在HTML的表格中添加复选框行:
```html
<table>
<thead>
<tr>
<th>Select</th>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" name="row1"></td>
<td>Row 1, Column 1</td>
<td>Row 1, Column 2</td>
</tr>
<tr>
<td><input type="checkbox" name="row2"></td>
<td>Row 2, Column 1</td>
<td>Row 2, Column 2</td>
</tr>
<tr>
<td><input type="checkbox" name="row3"></td>
<td>Row 3, Column 1</td>
<td>Row 3, Column 2</td>
</tr>
</tbody>
</table>
```
在每个表格行中添加一个包含一个复选框的单元格即可。你可以根据需要更改 `name` 属性的值来标识每个行的复选框。
阅读全文