我想将我的 html 表导出到 CSV 文件。有没有简单的代码?用户将使用两个或三个步骤并下载 CSV。
<table>
<thead>
<tr>
<th>1</th>
<th>2</th>
</tr>
</thead>
<tr>
<td rowspan='2'>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
</tr>
<tfoot>
<tr>
<th colspan='2'>6 <span style='display:none'> 7
</span> 8</th>
</tr>
</tfoot>
</table>
Run Code Online (Sandbox Code Playgroud)