重现代码

const iframe = document.createElement('iframe');
iframe.onload = () => {
  iframe.focus();
  iframe.contentWindow.print();
}
iframe.src="path/to/pdf/file"

解决方法

const iframe = document.createElement('iframe');
iframe.onload = () => {
  setTimeout(() => {
    iframe.focus();
    iframe.contentWindow.print();
  }, 1000);
}
iframe.src="path/to/pdf/file"
posted on 2022-05-17 23:24  y1j2x34  阅读(748)  评论(0编辑  收藏  举报