我一直试图转换html2png,但不幸的是一些html内容主要是画布无法转换。请问你能帮我看看我的代码是什么问题。这是整个代码的链接:http://jsfiddle.net/w0vbc0wn/12/
$(function() {
$("#moe").click(function() {
html2canvas($(".printdiv"), {
onrendered: function(canvas) {
theCanvas = canvas;
document.body.appendChild(canvas);
// Convert and download as image
Canvas2Image.saveAsPNG(canvas);
$("#moe").append(canvas);
// Clean up
//document.body.removeChild(canvas);
}
});
});
});