亲宝软件园·资讯

展开

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

人气:0
复制代码 代码如下:

<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>

加载全部内容

相关教程
猜你喜欢
用户评论