1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <script> function setIframeHeight() { const iframe = document.getElementById('iframeid'); if (!iframe) return; try { const h = iframe.contentDocument?.body.scrollHeight || iframe.contentWindow.document.body.scrollHeight; iframe.style.height = (h + 50) + 'px'; } catch (e) { console.log('iframe 自适应失败', e); iframe.style.height = '1000px'; } } </script>
<iframe id="iframeid" src="https://game.e-lise.top" width="100%" height="0" frameborder="0" scrolling="no" onload="setIframeHeight()" style="border-radius:8px; background:#fff;"> </iframe>
|