我正在使用html2canvas在网络上构建打印页面功能。

function printthispage() {

    html2canvas($("#mydiv"), {
        onrendered: function (canvas) {
            var myImage = canvas.toDataURL("image/png");
            var printWindow = window.open(myImage);
            printWindow.document.close();
            printWindow.focus();
            printWindow.print();
            printWindow.close();
        }
    });
}

但是,窗户立即打开和关闭。我尝试删除close(),该图像显示在新窗口中,但未触发任何打印功能。有什么不对?

最佳答案

试试这个,它将起作用:

html2canvas($("#mydiv"), {
    onrendered: function(canvas) {
        var myImage = canvas.toDataURL("image/png");
        var tWindow = window.open("");
        $(tWindow.document.body)
            .html("<img id='Image' src=" + myImage + " style='width:100%;'></img>")
            .ready(function() {
                tWindow.focus();
                tWindow.print();
            });
    }
});

关于javascript - 使用html2canvas打印页面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26584682/

10-09 22:03