表格结构标签
<thead></thead>
:用于定义表格的头部。<tbody></tbody>
:用于定义表格的主体,数据主体。- 这两个标签都是放在
<table></table>
中的。 - 相当于html的
<head>和<body>
两个标签。
<table border="1">
<thead>
<tr>
<th>头1</th>
<th>头2</th>
</tr>
</thead>
<tbody>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</tbody>
</table>