iframe框架调用高度自适应方法

前端之家收集整理的这篇文章主要介绍了iframe框架调用高度自适应方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<iframe frameborder="0" src="http://www.daixiao360.cn/" class="iframe" frameborder="0" id="test" onload="this.height=100" width="762px"  scrolling="no"></iframe>
<script type="text/javascript">
function reinitIframe(){
var iframe = document.getElementById("test");
try{
var bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(bHeight,dHeight);
iframe.height = height;
console.log(height);
}catch (ex){}
}
window.setInterval("reinitIframe()",200);
</script>

猜你在找的帝国CMS相关文章