Iframe自适应高度

    在做页面的时候经常会用到iframe,同样iframe的高度问题一直比较烦人。现在给术一个让iframe根据所包含页面的高度设置自己的高度。
  
  调用本地文件,写法如下:
  
<iframe id="test" src="test1.htm" 
          onload="this.height=test.document.body.scrollHeight"
          frameborder="0"></iframe>

调用http页面,必须加上document.all.
document.all.test.height=document.all.test.document.body.scrollHeight

你可能感兴趣的:(iframe)