Javascript 네이티브 및 jquery 라이브러리는 iframe 적응형 콘텐츠 높이 및 너비를 구현합니다.---jQuery 코드를 사용하는 것이 좋습니다!
‍<iframe src="index.php" id="mainiframe" name="mainiframe" width="100%" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe>
Jquery 라이브러리 기반 코드는 구현하기 쉽습니다.
<script language="javascript" type="text/javascript"> $(document).ready(function(){ $("#mainframe").load(function(){ $(this).height(0); //用于每次刷新时控制IFRAME高度初始化 var height = $(this).contents().height() + 10; $(this).height( height < 500 ? 500 : height ); }); }); </script>
JS 네이티브 코드 기반 구현:
<script language="javascript"> if (window.parent.length>0){window.parent.document.all.mainframe.style.height=document.body.scrollHeight;} </script>
iframe에서 호출하는 파일 36cc49f0c466276486e50c850b7e4956 뒤에 위 단락을 추가하세요.
또한 콘텐츠의 양에 따라 iframe의 높이가 자동으로 커지도록 제어할 수도 있습니다.
<iframe name="web" width="100%" frameborder=0 height="100%" src="index.php" id="web" onload="this.height=web.document.body.scrollHeight+20" ></iframe>
jquery 라이브러리는 iframe 적응형 콘텐츠 높이와 너비를 구현합니다