chrome浏览器在打印预览页或保存的pdf文件上均不显示png图像

时间:2018-11-16 11:07:56

标签: javascript jquery html

我正在尝试使用jquery将一些png图像添加到我的打印页面,但无法做到这一点,我们将不胜感激。 Chrome版本:版本70.0.3538.102。 我的代码: 这里是将我所有的图像附加到“ myImages” div上,然后进行打印。

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

1 个答案:

答案 0 :(得分:0)

当我更改此设置时,它对我有用:

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);