如何修复jspdf中重叠的表列

时间:2017-06-09 02:57:37

标签: php pdf jspdf

我正在使用jspdf插件在我的网页上生成pdf。但我没有像我预期的那样得到桌子。我得到这样的输出。  enter image description here

如何解决此问题并正确获取表格?

function HTMLtoPDF(){
var pdf = new jsPDF('p', 'pt', 'a4');
source = $('#HTMLtoPDF')[0];
specialElementHandlers = {
    '#bypassme': function(element, renderer){
        return true
    }
}
margins = {
    top: 50,
    left: 60,
    width: 545
  };
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
        pdf.save('Report.pdf');
      }
  )     
}

我希望得到像这样的输出 enter image description here

0 个答案:

没有答案