`

iframe 自适应高度,多层嵌套iframe自适应高度

阅读更多
一、单个iframe 高度自适应
<iframe src="yx/yx_list.html" width="100%" onload="this.height=this.contentWindow.document.body.scrollHeight" scrolling="no" name="rtFrame" frameborder="0"></iframe>



当前窗口自适应高度:this.height=this.contentWindow.document.body.scrollHeight

子窗体窗口自适应高度:
window.parent.document.getElementById("rtFrame").height=document.body.scrollHeight;


二、多层嵌套iframe 高度自适应
A页面的iframe 加载B.html文件:
<iframe id="frame_content" src=”B.html“ name="right" width="1003" frameborder="0" scrolling="no" ></iframe>

B.html页面也有一个iframe:
<iframe width="750" name="rightform" id="rightform" src="KinTimMng_right_init.php" frameborder="0" scrolling="no" onload="this.height=this.contentWindow.document.body.scrollHeight;parent.document.getElementById('frame_content').style.height= document.body.scrollHeight + 'px';" ></iframe>


onload的时候执行了两条js语句

1、设置当前iframe自己的高度自适应
this.height=rightform.document.body.scrollHeight 

2、设置父iframe的高度自适应(注意后面的高度单位px,如果不加单位,firefox下不起作用)
parent.document.getElementById('frame_content').style.height= document.body.scrollHeight + 'px'



分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    多层嵌套iframe 自适应高度的解决方法

    多层嵌套iframe 自适应高度的解决方法

    iframe 多层嵌套 无限嵌套 高度自适应的解决方案

    然而,当`iframe`进行多层嵌套时,特别是无限嵌套,如何保证每个`iframe`的高度都能自适应其内容,避免滚动条的出现,就成为了一个挑战。本文将探讨一种解决方案,适用于`A`、`B`、`C`三个页面互相嵌套的情况。 ...

    iframe多层级自动适应高度

    解决`iframe`多层级自适应高度的关键在于JavaScript或者CSS技术。一种常见的JavaScript解决方案是使用`window.postMessage` API,这是一个允许来自不同源的脚本采用异步方式进行有限通信的方法。当`iframe`中的内容...

    iframe实用操作锦集

    - **子页面与子页面间的传递**:如果有多层`iframe`,可以通过`parent.window.frames`访问到嵌套的`iframe`。 ```javascript var i1 = parent.window.frames['iframeId']; var val = i1.document.getElementById...

    深入解析contentWindow, contentDocument

    首先,它获取了父级iframe的`contentWindow`,然后通过`contentWindow`进一步获取到子级和孙级iframe的`contentDocument`,计算出它们的内容高度,并将这些高度设置回对应的iframe元素,从而实现自适应高度的效果。...

    页面布局frameset frame

    6. **nestedframes.html** - 嵌套框架,即在一个框架内再嵌套其他框架,形成多层布局。 7. **links.html** - 在框架环境中处理链接的策略,比如链接跳转、目标框架设定等。 8. **display.html** - 可能展示了不同...

Global site tag (gtag.js) - Google Analytics