gpt4 book ai didi

JSPDF-Autotable colspan/rowpan 问题

转载 作者:行者123 更新时间:2023-12-05 05:23:57 26 4
gpt4 key购买 nike

我有一个带有 rowspan/colspan 的 html 表格。我正在使用 jspdf 和 jspdf-autotable 将该 html 表格导出为 pdf。但是,保存的 pdf 有一个表,该表在实际表中不包含 rowspan/colspan。如何使用 jspdf-autotable 执行 colspan/rowspan?我当前的代码是

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title id='title'>HTML Page setup Tutorial</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.0.272/jspdf.debug.js"></script>
<script src="https://rawgit.com/someatoms/jsPDF-AutoTable/master/dist/jspdf.plugin.autotable.js"></script>

<script type="text/javascript">
function myFunction()
{

var doc = new jsPDF('p', 'pt');

var res = doc.autoTableHtmlToJson(document.getElementById("my-table"));
doc.autoTable(res.columns, res.data, {startY: 40});
doc.save("Report.pdf");
}

</script>
</head>
<body>
<table border='1' id="my-table">
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan='2'>D</td>
<td colspan='2'>$100</td>

</tr>
<tr>
<td >E</td>
<td >F</td>

</tr>
</tbody>
</table>
<button type="button" onclick="myFunction()">Click Me!</button>
</body>
</html>

最佳答案

编辑:库的第 3 版支持行跨度和列跨度,无需修改

该插件不支持从 html 自动移植 colspans 和 rowspans。但是你可以手动完成。看看这个 example (演示是 here )。

关于JSPDF-Autotable colspan/rowpan 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36510636/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com