为什么在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
答案 0 :(得分:0)
它缺少DOCTYPE。当我把它开始工作时