以下のプレ要素 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>