wkhtmltopdf在页脚文件中包含时无法正常工作

时间:2014-12-09 22:40:52

标签: javascript pdf pdf-generation wkhtmltopdf

为什么在wkhtmltopdf中Javascript在页脚文件中包含时无效?

CMD: wkhtmltopdf --footer-html footer.html --zoom 1.2 out.html out.pdf

footer.html内容:

<html>
<head>
  <script>
    window.onload = function() {    
      document.getElementById('foot').innerHTML = 'test';
    };
  </script>
</head>
<body>
  <div id="foot"></div>
</body>
</html>

wkhtmtopdf 0.12.1(补丁qt)

系统:赢得8.1 x64

1 个答案:

答案 0 :(得分:0)

它缺少DOCTYPE。当我把它开始工作时