iframe高度自适应(同域情况)

主页面main.jsp,iframe要设置一个默认高度,防止在chrome打开的iframe高度出现一直增加的情况

<body>
 <iframe name=openFrame  id="openFrame" scrolling="no" frameborder="no" border="0" class="app-frame" src="/www/com/yc"  onLoad="openLoad(this)" style="height:200px;"></iframe>
</body>
function openLoad(ifm){
     ifm.style.height=$(ifm).contents().outerHeight()+"px"; 
}

 

posted @ 2016-01-13 09:28  盛夏微风  阅读(245)  评论(0编辑  收藏  举报