iframe自适应宽度和高度的函数一例

发布时间:2021-01-17编辑:脚本学堂
为大家介绍一个iframe自适应宽度与高度的小函数,希望可以帮助大家解决iframe自适应的问题,有需要的朋友看看吧。

代码如下:
 

复制代码 代码示例:
<script language="javascript">
/**
 * iframe自适应宽度与高度
 * by http://www.jb200.com
*/
autoHeight();
function autoHeight(){
  var tag=document.getElementById('iframe');
  if(tag && tag.clientHeight < tag.contentWindow.document.body.scrollHeight){
     tag.style.height = tag.contentWindow.document.body.scrollHeight + 'px';
}
setTimeout("autoHeight()", 10);
}
</script>