본문 바로가기

개발/javascript Tip

iframe 높이 자동조절 스크립트

iframe 높이 자동조절 스크립트

 <script language='javascript'>
<!--
function changeHeight() {
//아이프레임 안쪽 페이지 높이를 먼저구하신후
var the_height=document.getElementById('content').contentWindow.document.body.scrollHeight; 
// 아이프레임 높이를 바꿔주시면 됩니다. 
document.getElementById('content').height=the_height; }
//-->
</script>


<iframe id='content'
                frameborder=0
                width=100%
                scrolling=no
                onLoad="changeHeight();"
                src='content.php'>
</iframe>