iframeの高さをレスポンシブに自動調整する方法


Warning: Undefined variable $more_link_text in /home/croquis/croquis.cc/public_html/cc/wp-content/themes/croquis/index.php on line 18

Warning: Undefined variable $stripteaser in /home/croquis/croquis.cc/public_html/cc/wp-content/themes/croquis/index.php on line 18

CSSで調整するよりJavaScriptの方が安定しました。
下記がソースコードです。

HTML
<iframe id=”フレームのID” src=”your-iframe-source.html”></iframe>

JavaScript
<script>
function resizeIframe() { var iframe = document.getElementById(‘フレームのID’); iframe.style.height = iframe.contentWindow.document.body.scrollHeight + ‘px’; } window.onload = resizeIframe; window.onresize = resizeIframe;
</script>

2024.02.15BACK