html2canvas导出table,使用html2canvas将HTML表格转换为画布(Convert HTML table to canvas using html2canvas)...

使用html2canvas将HTML表格转换为画布(Convert HTML table to canvas using html2canvas)

我想将html表转换为pdf。 我尝试过使用jspdf。 它适用于普通表。 但是当表格中有图像时不起作用。 现在我试图至少转换为canvas,然后转换为pdf。 但是当有图像时它也无法工作。

button{

display:block;

height:20px;

margin-top:10px;

margin-bottom:10px;

}

window.takeScreenShot = function() {

html2canvas(document.getElementById("target"), {

onrendered: function (canvas) {

document.body.appendChild(canvas);

},

width:320,

height:220

});

}

W3Schools.comsaf
saffwdqwewe

to image

I am trying to convert html table to pdf. I have tried using jspdf. it works well with plain tab


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部