jspdf,添加新页面,坐标

时间:2016-10-05 12:49:21

标签: javascript jspdf html2pdf

我正在使用jspdf进行html到pdf的转换。

第一页正在完美呈现内容。但是当谈到第二页时,当我使用doc.cell(10, 10, cellWidth, 10, txt, j);时,它会显示在页面中间而不是出现在开头。

如果我使用doc.text(10.10,"value")它出现在正确的坐标处。

请帮帮我。

1 个答案:

答案 0 :(得分:0)

要将内容添加到其他页面,只需执行

doc.addPage() 

示例假设您有两页

 doc.text(10.10,"value")  //this will bne in the first page

 docaddPage() //this adds another page

 doc.text(10.10,"value") // this will be in page2