iframe自适应高度url-创新互联
http://caibaojian.com/iframe-adjust-content-height.html
.new-ico {display: block; width: 27px; height: 28px;
background: url(static/img/new.png) 0 center no-repeat;
position: absolute; left: 10px; top: 20px;;
}
//iframe自适应高度
function reinitIframe(){
var iframe = document.getElementById("iframe_box");
try{
var bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(bHeight, dHeight);
iframe.height = height;
}catch (ex){
}
}
window.setInterval("reinitIframe()", 2629);
////////////////2////////////
var iframeHeight = 0;
var addIframeHeight = 0;
//调整iframe高度
function adjustIframe(){
try{
var h = 0 , fr = $("#frame")[0];
if(fr.contentDocument && fr.contentDocument.body.offsetHeight){
h = fr.contentDocument.body.offsetHeight;
document.title = fr.contentDocument.title;
}else if (fr.Document && fr.Document.body.scrollHeight){
h = fr.Document.body.scrollHeight;
document.title = fr.Document.title;
}
if(h != iframeHeight){
//fr.height = h + 35;
iframeHeight = h;
fr.height = h + addIframeHeight;
}
}catch(e){}
};
//重新调整iframe高度,主要用于临时增加或减少页面的高度
function reAdjustIframe(addHeight){
iframeHeight = 0;
addIframeHeight = addHeight;
adjustIframe();
addIframeHeight=0;
}
setInterval(function(){
adjustIframe();
},300);
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
新闻标题:iframe自适应高度url-创新互联
文章地址:http://ybzwz.com/article/dcesos.html