Home > 自動リサイズ


iframeの自動リサイズ方法

JavaScriptを使用する方法: 以下のスクリプトを使用して、iframeの高さを自動的に調整することができます。<script> function resizeIframe(obj) { obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px'; } </script>>>More