|
|
| 第2行: |
第2行: |
|
| |
|
| <html> | | <html> |
| <iframe src="https://fkls.cc/donorslist/" width="100%" frameborder="0" scrolling="no" allowfullscreen></iframe> | | <iframe src="https://fkls.cc/donorslist/" width="100%" border="none" overflow="hidden" allowfullscreen></iframe> |
| <script>
| |
| function resizeIframe() {
| |
| const iframe = document.getElementById('myIframe');
| |
| // 关键:获取子页面 body 实际高度(兼容不同浏览器)
| |
| const contentHeight = iframe.contentWindow.document.body.scrollHeight ||
| |
| iframe.contentWindow.document.documentElement.scrollHeight;
| |
| iframe.height = contentHeight + 20; // 加 20px 预留边距(避免滚动条)
| |
| }
| |
| | |
| // 1. iframe 加载完成后触发
| |
| document.getElementById('myIframe').onload = resizeIframe;
| |
| | |
| // 2. 窗口 resize 时重新计算(可选,应对父窗口缩放)
| |
| window.onresize = resizeIframe;
| |
| </script>
| |
| </html> | | </html> |