JSPDF と AutoTable を使用して HTML テーブルから PDF ファイルを生成しようとしています。html テーブルを以下に示します。
<table id="table" style="display:none;">
<thead>
<tr>
<th>sl</th>
<th>First</th>
<th>Last</th>
<th>Email</th>
<th>Country</th>
</tr>
<tr>
<th>No</th>
<th>name</th>
<th>name</th>
<th>id</th>
<th>name</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>xyz</td>
<td>jkl</td>
<td>abc</td>
<td>pqr</td>
</tr>
</tbody>
</table>
私の質問:Sl
テーブル データを PDF ファイルに変換するときに、「 」という名前のヘッダー列を非表示にするオプションはありますか?
フィドルはこちら: https://jsfiddle.net/tbz8p79j/7/