我正在尝试采用下面的前置元素 HTML,并将其转换为下面的后置元素 HTML。如果对 post 元素使用 thead 和 tfoot 没有意义,那么 tbody 就可以了。我正在考虑从 $('#myTable') 开始并用 div 包装它。我正在努力解决如何最好地删除页眉和页脚,并将它们插入到相应的表格中。感谢您的任何建议。
前元素 HTML:
<table id="myTable">
<thead>
<tr>
<th>H1</th>
<th>H2</th>
<th>H3</th>
</tr>
</thead>
<tfoot>
<tr>
<th>F1</th>
<th>F2</th>
<th>F3</th>
</tr>
</tfoot>
<tbody>
<tr>
<th>B1</th>
<th>B2</th>
<th>B3</th>
</tr>
</tbody>
</table>
帖子元素:
<div>
<table class="header">
<thead>
<tr>
<th>H1</th>
<th>H2</th>
<th>H3</th>
</tr>
</thead>
</table>
<div>
<table id="myTable" class="body">
<tbody>
<tr>
<th>B1</th>
<th>B2</th>
<th>B3</th>
</tr>
</tbody>
</table>
</div>
<table class="footer">
<tfoot>
<tr>
<th>F1</th>
<th>F2</th>
<th>F3</th>
</tr>
</tfoot>
</table>
</div>