我正在尝试使用jquery将一些png图像添加到我的打印页面,但无法做到这一点,我们将不胜感激。 Chrome版本:版本70.0.3538.102。 我的代码: 这里是将我所有的图像附加到“ myImages” div上,然后进行打印。
setTimeout(function () {
w=window.open();
w.document.write($('#myImages').html());
w.print();
w.close();
}, 100);
答案 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);