码迷,mamicode.com
首页 > 其他好文 > 详细

父页面iframe高度自动适应子页面iframe高度

时间:2015-04-02 11:43:56      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:iframe   父iframe   子iframe   高度自适应   

//iframe自适应高度
function getHeight(id, name) {
document.documentElement.scrollTop = 0;
var ifm = document.getElementById(id);
var subWeb = document.frames ? document.frames[name].document :


ifm.contentDocument;


if (ifm != null && subWeb != null) {
ifm.height = subWeb.body.scrollHeight;


}
initParentHeight(); //这个是再初始化父页面的iframe的高度
}
function initParentHeight() //初始化父页面的iframe的高度

var div = window.parent.document.getElementById(‘mainFrame‘); 
div.style.height=window.document.body.scrollHeight||window.document.body.offsetHeight+5; 


父页面iframe高度自动适应子页面iframe高度

标签:iframe   父iframe   子iframe   高度自适应   

原文地址:http://blog.csdn.net/menghuannvxia/article/details/44829411

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!