Ich habe eine HTML-Tabelle mit einer Kopf- und Fußzeile:
<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>
Ich versuche, eine Zeile hinzuzufügen tbody
mit folgendem :
myTable.insertRow(myTable.rows.length - 1);
Die Zeile wird jedoch im tfoot
Abschnitt hinzugefügt .
Wie füge ich ein tbody
?