我正在尝试使用 JSPDF 和 AutoTable 从 html 表生成 PDF 文件。
在我的示例中,有一个带有两个标题行的 html 表,如下所示:
<table id="table" style="display:none ;">
<thead>
<tr>
<th >ID</th>
<th >First name</th>
<th >Last name</th>
<th >Email</th>
<th >Country</th>
<th >IP-address</th>
<th >IP-address</th>
</tr>
<tr>
<th >ID</th>
<th >First name</th>
<th >Last name</th>
<th >Email</th>
<th> Country</th>
<th >IP-address</th>
</tr>
</thead>
</table>
但是PDF文件是用单标题行生成的。如何解决这个问题?还有一个选项可以生成仅包含所选列的 PDF 文件。小提琴在这里: