Safari 浏览器下打印PDF, 打印预览显示为空白
重现代码
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"