我有一个带有页眉和页脚的 HTML 表:
<table id="myTable">
<thead>
<tr>
<th>My Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>aaaaa</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>My footer</td>
</tr>
<tfoot>
</table>
我试图在 tbody
中添加以下行:
myTable.insertRow(myTable.rows.length - 1);
但该行是在 tfoot
部分中添加的。
如何插入 tbody
?