6

如何使用 html 在表格中的每一行旁边添加一个复选框。如何使用以下行添加它:

<td>    &nbsp;   </td>
<td>   &nbsp;    </td>
4

2 回答 2

21
<td><input type="checkbox" name="name1" />&nbsp;</td>
<td><input type="checkbox" name="name2" />&nbsp;</td>

像那样。这是一个非常基本的问题,因此您可能想提供更多关于您想要什么的信息。

于 2012-08-08T21:50:58.780 回答
1
<td><input type="checkbox" />    &nbsp;   </td>
<td><input type="checkbox" />    &nbsp;   </td>
<td><input type="checkbox" />    &nbsp;   </td>

等等...

于 2012-08-08T21:51:45.440 回答