`
caiaihuan
  • 浏览: 18739 次
  • 性别: Icon_minigender_2
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类
最新评论

比较靠谱的iframe 自适应高度

    博客分类:
  • js
阅读更多
<iframe id="frame_content" src="iframe_b.html" scrolling="no" frameborder="0"
 onload="this.height=100"></iframe>
<script type="text/javascript">
function reinitIframe(){
var iframe = document.getElementById("frame_content");
try{
var bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(bHeight, dHeight);
iframe.height =  height;
}catch (ex){}
}
window.setInterval("reinitIframe()", 200);
</script>


原文出自 http://www.kuqin.com/webpagedesign/20080516/8536.html
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics