작업 일지/JS

iframe 스크롤 없애기

AI랑노는 또또 2023. 7. 5. 11:09

이 기능은 iframe 에서 생기는 스크롤을 없애고, windows 스크롤을 이용하고자 할때 사용합니다.

 

HTML

<div id="tab_content_primary_01" class="tab_content" style="display:none;">
    <p>  
     <iframe src="${ctx}/ntSvcPjtInfo.do?method=list" width="100%" height="600" onload="autoResize(this)" scrolling="no" frameborder="0"  marginwidth="0" marginheight="0" ></iframe>
    </p>
    <!-- iframe 가로 스크롤 없애기 -->
    <script type="text/javascript">
     // iframe resize
     function autoResize(i)
     {
         var iframeHeight=
         (i).contentWindow.document.body.scrollHeight;
         (i).height=iframeHeight+40;
     }
    </script>
</div>