首页 > 其他 > 详细

iframe高度自适应子页面高度 使用onload属性

时间:2017-06-13 10:54:00      阅读:380      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
<head>
    <title>测试</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0">
</head>
<body id="body1">
    <iframe id="urls" src="child1.html" frameborder="0" scrolling="no"  height="100%" style="width: 1px; min-width: 100%; *width: 100%;" ></iframe>
    <div style="height: 200px; background: green;">
        
    </div>
</body>
<script>
    var iframe = document.getElementById(‘urls‘);
    function iframeLoad() {
            iframe.height=document.getElementById("urls").contentWindow.document.body.clientHeight;
        }
    /*
    function iframeclick(){
        iframeLoad();
    }
    */
    if (iframe.attachEvent){
        iframe.attachEvent("onload",function(){
            iframeLoad();
        });
    } else {
        iframe.onload = function(){
            iframeLoad();
        };
    }
</script>
</html>

 

iframe高度自适应子页面高度 使用onload属性

原文:http://www.cnblogs.com/huahuahua/p/6999893.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!