我一直在玩 Dart,我喜欢它,但现在我感觉有点笨。
我正在尝试将新行添加到具有以下结构的 html 页面中的表中:
<table>
<thead>
...
</thead>
<tbody>
...
</tbody>
</table>
问题是当我执行代码时,新行出现在 tbody 标记之后,然后我失去了 CSS 样式。
我正在这样做:
TableElement myTable = query('#tabTest');
TableRowElement newLine = new TableRowElement();
newLine.insertCell(0).text = "9";
newLine.insertCell(1).text = "aaa";
newLine.insertCell(2).text = "bbb";
newLine.insertCell(3).text = "ccc";
myTable.nodes.add(newLine);
这是错的吗?我应该怎么做才能使新行进入 tbody 标签内?有人可以给我举个例子吗?