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


    在页面无刷新更新方面,虽然现在的ajax很强悍,但是处理代码相对多点。想比之下,iframe就简单多了!处理iframe的自适应宽、高,会经常用到,网上整理了一份,写在这里备用:

    单个iframe 高度自适应:

    <iframe id="iFrame1" name="iFrame1" width="100%" onload="this.height=iFrame1.document.body.scrollHeight" frameborder="0" src="index.htm"></iframe>

    起作用的是这句:onload="this.height=iFrame1.document.body.scrollHeight"

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

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

    起作用的代码是这句:onload="this.height=rightform.document.body.scrollHeight;parent.document.getElementById('frame_content').style.height= document.body.scrollHeight + 'px';"

    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'

    以上代码在ie6、ie7、ie8、firefox3.5下测试通过

    转自:http://blog.csdn.net/hj7jay/article/details/53463179

  • 相关阅读:
    相信未来 ————11月份做题记录
    noi 滚cu后7月oi生活
    博客已经迁移到 http://imbotao.top 也会同步到这儿
    构建第一个SpringBoot工程
    Spring 事务管理
    IntelliJ IDEA 使用技巧
    JS 获取字符串实际长度
    读《程序员修炼之道》
    读《如何高效学习》
    SQL 语句优化方法
  • 原文地址:https://www.cnblogs.com/zzwlong/p/7575047.html
Copyright © 2020-2023  润新知