我正试图添加一些png图像到我的打印页面与jquery,但无法做到这一点,任何帮助将不胜感激。
Chrome版本:版本70.0.3538.102。
我的代码:
这里将我的所有图像附加到“myImages”div,然后打印。

setTimeout(function () {
    w=window.open();
    w.document.write($('#myImages').html());
    w.print();
    w.close();
}, 100);

最佳答案

当我改变这一点时,它对我起作用:

setTimeout(function () {
   w=window.open();
   w.document.write($('#myImages').html());
   w.print();
   w.close();
}, 100);

对此:
w=window.open();
w.document.write($('#myImages').html());
setTimeout(function () {
   w.print();
   w.close();
}, 100);

07-27 18:08