Iframe 自适应高度代码

Iframe 自适应高度

code 1:
<div class="center" style="padding-left:10px">
    //Iframe窗口自适应高度 兼容IE6.0、Chrome、FF3.0以上
    <script type="text/javascript" language="javascript">
    function iframeFitHeight(iframe)
    {
        try {
             var win = iframe.name ? window.frames[iframe.name] : iframe.contentWindow;
             iframe.style.height = win.document.body.scrollHeight + "px";
            }
        catch(e){}
    }
    </script>
    //在iframer 的父窗口 利用onload() 事件进行调用
    <iframe id="boxscore_content" name="boxscore_name" frameborder="0"  width="100%" src="http://www.domain.com/includes/boxscore_today.php" onLoad="iframeFitHeight(this)"></iframe>
</div>

code 2:
使用jQuery autoHeight plugin 来实现
基本代码:
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript" src="autoHeight.js"></script>
<iframe src="http://www.domain.com/boxscore.php" width="300" frameborder="0" scrolling="auto" class="autoHeight" name="iframe"></iframe>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值