不断积累,必然飞跃,突破随之!

相信自己,开拓生活!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

自动调整iframe的高度

Posted on 2008-10-13 14:51  Tangyuan2017  阅读(251)  评论(0编辑  收藏  举报

                            <iframe src="<%=strReturnURL %>" id="frame_content" width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0"
                                scrolling="no"></iframe>

                            <script type="text/javascript">
function reinitIframe(){
var iframe = document.getElementById("frame_content");
try{
iframe.height=iframe.contentWindow.document.documentElement.scrollHeight;
}catch (ex){}
}
window.setInterval("reinitIframe()", 200);
                            </script>