小编Man*_*hit的帖子

如何将 HTML 表格导出或转换为 CSV?

我想将我的 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)

jquery html-table

0
推荐指数
1
解决办法
6376
查看次数

标签 统计

html-table ×1

jquery ×1