Iframe自适应高度绝对好使的代码 兼容IE,遨游,火狐

Uma ·
更新时间:2024-09-20
· 962 次阅读

代码如下:
<script type="text/javascript">
function reinitIframe(){
var iframe = document.getElementById("mainFrame");
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()", 200);
</script>



火狐 ie iframe

需要 登录 后方可回复, 如果你还没有账号请 注册新账号