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

iframe自适应高度

时间:2016-04-06 16:47:16      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

/**
* iframe自适应高度,height为手动设置的最小高度
*/
function initIframeHeight(height){
var userAgent = navigator.userAgent;
var iframe = parent.document.getElementById("contentIframe");
var subdoc = iframe.contentDocument || iframe.contentWindow.document;
var subbody = subdoc.body;
var realHeight;
//谷歌浏览器特殊处理
if(userAgent.indexOf("Chrome") > -1){
realHeight = subdoc.documentElement.scrollHeight;
}
else{
realHeight = subbody.scrollHeight;
}
if(realHeight < height){
$(iframe).height(height);
}
else{
$(iframe).height(realHeight);
}
}

iframe自适应高度

标签:

原文地址:http://www.cnblogs.com/chenxiaojun/p/5359845.html

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