1. 设置iframe宽高自适应
const iframe = document.getElementById('file');
iframe.onload = () => {
iframe.width= iframe.contentWindow.document.documentElement.scrollWidth;
iframe.height = iframe.contentWindow.document.documentElement.scrollHeight;
};
1. 设置iframe宽高自适应
const iframe = document.getElementById('file');
iframe.onload = () => {
iframe.width= iframe.contentWindow.document.documentElement.scrollWidth;
iframe.height = iframe.contentWindow.document.documentElement.scrollHeight;
};