您的位置:首页 > 其它

iframe自适应高度

2008-11-12 16:35 183 查看
//iframe自适应高度

function SetCwinHeight(iframeID){

var bobo=document.getElementById(iframeID);

if (document.getElementById){

if (bobo && !window.opera){

if (bobo.contentDocument && bobo.contentDocument.body.offsetHeight){

bobo.height = bobo.contentDocument.body.offsetHeight+20+'px';

}else if(bobo.Document && bobo.Document.body.scrollHeight){

bobo.height = bobo.Document.body.scrollHeight+20+'px';

}

}

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: