- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 jspdf autotable 插件将这两个表打印为 pdf。但我编写的脚本仅打印第二个表。我认为问题出在剧本的编写上。有人会指导我如何使用 jspdf-autotable 打印这两个表格吗?但我遇到了一个问题“未捕获类型错误:无法读取未定义的属性'finalY'”此错误将显示在控制台中。在这里,我将显示 4 个不同的表格宽度和高度,并且我打印了一个 pdf 页面。我已经编写了一些代码,但无法正常工作。
function generate() {
var doc = new jsPDF('p', 'pt', 'A4');
let finalY = doc.autoTable.previous.finalY;
var res = doc.autoTableHtmlToJson(document.getElementById('tbl1'));
doc.autoTable(res.columns, res.data);
var res2 = doc.autoTableHtmlToJson(document.getElementById('tbl2'));
doc.autoTable(res2.columns, res2.data, {
startY: doc.lastAutoTable.finalY + 50
});
doc.save("test.pdf");
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.3/jspdf.debug.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/2.1.0/jspdf.plugin.autotable.js"></script>
<div class="col-md-3">
<table id="customers" class="table table-striped">
<colgroup>
<col width="60%">
<col width="60%">
</colgroup>
<tbody>
<tr style="background:#e5d56b;">
<th>8 Gauge / 4.0MM</th>
<th colspan="3">HOLE SIZE </th>
</tr>
<tr>
<td>Height</td>
<td style="background-color:#82ca2e;">2</td>
<td style="background-color:#82ca2e;">3</td>
<td style="background-color:#82ca2e;">4</td>
</tr>
<tr>
<td>3 Feet</td>
<td style="background-color:#82ca2e;">65</td>
<td style="background-color:#82ca2e;">44</td>
<td style="background-color:#82ca2e;">30</td>
</tr>
<tr>
<td>4 Feet</td>
<td style="background-color:#82ca2e;">86</td>
<td style="background-color:#82ca2e;">58</td>
<td style="background-color:#82ca2e;">40</td>
</tr>
<tr>
<td>5 Feet</td>
<td style="background-color:#82ca2e;">108</td>
<td style="background-color:#82ca2e;">73</td>
<td style="background-color:#82ca2e;">50</td>
</tr>
<tr>
<td>6 Feet</td>
<td style="background-color:#82ca2e;">129</td>
<td style="background-color:#82ca2e;">87</td>
<td style="background-color:#82ca2e;">60</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-3">
<table id="customers1" class="table table-striped">
<colgroup>
<col width="60%">
<col width="60%">
</colgroup>
<tbody>
<tr style="background:#e5d56b;">
<th>10 Gauge / 3.0MM</th>
<th colspan="3">HOLE SIZE </th>
</tr>
<tr>
<td>Height</td>
<td style="background-color:#82ca2e;">2</td>
<td style="background-color:#82ca2e;">3</td>
<td style="background-color:#82ca2e;">4</td>
</tr>
<tr>
<td>3 Feet</td>
<td style="background-color:#82ca2e;">36</td>
<td style="background-color:#82ca2e;">23</td>
<td style="background-color:#82ca2e;">19 </td>
</tr>
<tr>
<td>4 Feet</td>
<td style="background-color:#82ca2e;">48</td>
<td style="background-color:#82ca2e;">30</td>
<td style="background-color:#82ca2e;">25</td>
</tr>
<tr>
<td>5 Feet</td>
<td style="background-color:#82ca2e;">60</td>
<td style="background-color:#82ca2e;">38</td>
<td style="background-color:#82ca2e;">31</td>
</tr>
<tr>
<td>6 Feet</td>
<td style="background-color:#82ca2e;">72</td>
<td style="background-color:#82ca2e;">45</td>
<td style="background-color:#82ca2e;">38 </td>
</tr>
</tbody>
</table>
</div>
<button onclick="javascript:demoFromHTML();" style="float:right;" class="btn btn-primary">Download PDF</button>
最佳答案
首先你可以更改脚本一旦检查这个脚本它就会工作
<script type="text/javascript">
document.getElementById('downloadbtn').addEventListener('click',
exportPDF);
var specialElementHandlers = {
// element with id of "bypass" - jQuery style selector
'.no-export': function(element, renderer) {
// true = "handled elsewhere, bypass text extraction"
return true;
}
};
function exportPDF() {
var pdf = new jsPDF('p', 'pt', 'a4');
var img = new Image;
pdf.text('Recommended Consumer Price list Month : <?php echo date('F Y'); ?>', 150,31);
pdf.text('Customer Care : 9010316786', 150,51);
pdf.text('email us : info@karimullagroup.com', 150,71);
pdf.text('Website : www.karimullagroup.com', 150,91);
var source = document.getElementById('canvas').innerHTML;
margins = {
top: 80,
bottom: 60,
left: 50,
width: 322
};
// all coords and widths are in jsPDF instance's declared units
// 'inches' in this case
pdf.fromHTML(
source, // HTML string or DOM elem ref.
margins.left, // x coord
margins.top, { // y coord
'width': margins.width, // max width of content on PDF
'elementHandlers': specialElementHandlers
},
function (dispose) {
// dispose: object with X, Y of the last line add to the PDF
// this allow the insertion of new lines after html
img.onload = function() {
pdf.addImage(this, 40, 10, 90, 70);
pdf.save('starfence.pdf');
} },margins);
img.crossOrigin = "";
img.src = "images/Starfence.png";
}
</script>
关于javascript - 如何使用 jspdf-autotable 打印四个不同的表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60275555/
我正在使用带有插件 jspdf-autotable 的 jspdf 来为一个非常宽的表格创建一个 pdf,有没有办法让表格/列数据自动适应任何页面大小? 我尝试了下面的代码溢出:'linebreak'
我的表有 13 列。如何为每列获得不同的宽度?我可以像这样给每个列宽吗? 样式:{溢出:'换行符',列宽:[100,80,80,70,80,80,70,70,70,70,60,80,100]}, 我的
如何使用jspdf和jspadf-autotable在PDF中实现嵌套表格?类似于下图的内容: 最佳答案 jspdf-autotable 中不支持嵌套表格,但您可以使用 didDrawCell Hoo
在 jsPDF 中使用 .cell 时如何删除填充? 我到处都看了,文档很模糊 this.pdf = new jsPDF(); this.pdf.cell(0, 0, 10, 10, "cell ce
表格插件 JsPDF-AutoTable: https://github.com/simonbengtsson/jsPDF-AutoTable 如何使页面横向与纵向相反?在文档中,它只是说“仅支持 p
是否可以添加 HyperLink在 jsPDF ? 这是我用于相同的代码。 var doc = new jsPDF('p', 'pt'); doc.fromHTML( 'Cl
我对 jsPDF autotable 有疑问。 我的代码: $('#printBtn').on('click', function() { var pdf = new jsPDF('p
我有自动表的问题。我的表由 thead、tbody 和 tfoot 组成。我的脚是我在每一列上的总值(value)。我能够生成 pdf,但 tfoot 或总页脚不断打印在每一页上。我在检查文档时使用
有人可以帮忙举一个为 jspdf-autotable 设置自定义字体的例子吗? 我尝试了以下 var doc = new jsPDF('p', 'pt'); doc.setFont("rotobo")
我有一个带图像的 html 表。当我尝试转换为 PDF 时,只有数据来了。图像未以 PDF 格式显示。 如何获取pdf格式的表格td图片? 契约(Contract)标题包含复选框图像。但不是以 pdf
我正在做的是使用 jsPDF 创建我生成的图形的 PDF。但是,我不确定如何包装标题(使用 text() 函数添加)。标题的长度因图形而异。目前,我的标题正在页面外运行。任何帮助,将不胜感激! 这是我
我正在使用img jsPDF AutoTable库从我的HTML表创建PDF文件,Everythink工作正常,PDF总是创建,但我对我的国家/地区典型的一些特殊字符有疑问。在我的 PDF 文件中,包
JsPdf-autoTable是一款非常棒的软件,并且非常简单就能让基础功能发挥作用。 现在我想在每个页面的顶部添加一个 Logo 和一些文本,并在每个页面上添加一个 page X of Y 页脚,但
我有一个用于保存 html 页面的按钮。当用户单击按钮时,我想触发 jsPDF 函数,但它返回“jspdf PubSub 错误”并且生成的 pdf 文件为空白。 var doc = new jsPD
我是使用 jsPDF 的新手,能够很好地生成普通 PDF,但是当我尝试应用外部 CSS 或普通样式背景颜色时,它没有任何效果。 我的 JSP 包括: 我正在使用下
我正在尝试将“页码 x of y”添加到使用 jspdf 和 jspdf-autotable 生成的 PDF 中。我使用了 jspdf-autotable 示例网站上的 Examples.js 文件中
我正在使用jspdf和jspdf-autotable将基于数据的表格导出为PDF。 有时,我的数据可能包含 DOM 元素,这些元素不由 jspdf-autotable 插件处理。在大多数情况下,DOM
我刚刚开始使用 jsPDF 和 AutoTable 插件,它几乎完美地满足了我们的使用需求。一个问题... 是否可以将列定义中的 dataKey 分配给映射到表的 JSON 中的嵌套属性? 我们有一个
我刚刚开始使用 jsPDF 和 AutoTable 插件,它几乎完美地满足了我们的使用需求。一个问题... 是否可以将列定义中的 dataKey 分配给映射到表的 JSON 中的嵌套属性? 我们有一个
我使用 Array.prototype.push() 创建了一个包含来自动态表的值的数组.然后像这样把它转换成pdf doc.autoTable(vHeader, vData, opt); doc.s
我是一名优秀的程序员,十分优秀!