简易代码之家

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  157 Posts :: 2 Stories :: 57 Comments :: 0 Trackbacks
js代码:
function setIframeHeight() {
    
var dHeight = 502//基础高度
    var main = document.getElementById("mainIframe");
    
var left = document.getElementById("leftIframe");
    
//var leftFrame = document.getElementsByName("left")[0];
    var cHeight = main.contentWindow.document.body.scrollHeight; //当前高度
    var sHeight = 0//准备设置的高度值
    if (cHeight <= dHeight) {
        sHeight 
= dHeight + "px";
    } 
else {
        sHeight 
= cHeight + "px";
    }
    main.style.height 
= sHeight;
    left.style.height 
= sHeight;
    
if (left.contentWindow.document.getElementById("leftFrameCont")) {
        left.contentWindow.document.getElementById(
"leftFrameCont").style.height = sHeight;
    }
}
index.jsp部分页面代码:
<div id="content_bottom2" style="width:auto;">
    
<iframe name="left" class="vipIf_left" scrolling="no" marginwidth="0px" frameborder="0" src="left.jsp" id="leftIframe"></iframe>
    
<iframe name="main" class="vipIf_right" frameborder="0" src="main.jsp" onload="setIframeHeight();" id="mainIframe"></iframe>
</div>

left.jsp部分页面代码:
<body>
    
<div class="cont_left" id="leftFrameCont">
        

    
</div>
</body>
posted on 2009-09-21 15:13 Jakin.zhou 阅读(1315) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: