首页 > 语言 > JavaScript > 正文

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

2024-05-06 14:25:31
字体:
来源:转载
供稿:网友
代码如下:
<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>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选