른록노트

[javascript] iframe 컨텐츠에맞게 높이 자동조절 본문

Programming/[Javascript]

[javascript] iframe 컨텐츠에맞게 높이 자동조절

른록 2018. 9. 17. 18:24

@ 방법


<script type="text/javascript"> 

//<![CDATA[

function calcHeight(){

 //find the height of the internal page


 var the_height=

 document.getElementById('the_iframe').contentWindow.

 document.body.scrollHeight;


 //change the height of the iframe

 document.getElementById('the_iframe').height=

 the_height;


 //document.getElementById('the_iframe').scrolling = "no";

 document.getElementById('the_iframe').style.overflow = "hidden";

}

//

</script>


참고사이트

https://m.blog.naver.com/PostView.nhn?blogId=sajacr&logNo=221021059931&proxyReferer=https%3A%2F%2Fwww.google.co.kr%2F

반응형
Comments