jspdf,添加新页面,坐标

jspdf, add new page, coordinates

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

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

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

请帮帮我

要将内容添加到另一个页面,只需执行

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