반응형
iframe 높이가 자동으로 조절됨.
<script>
function ResizeiFrame(iframeObj)
{
var innerBody = iframeObj.contentWindow.document.body;
var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
iframeObj.style.height = innerHeight;
}
</script>
<iframe id="iframe_main" src="URL" width=100% marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no onload="ResizeiFrame(this)">
반응형