简单的iframe自动适应高度
</div>
css高度
.min_outer{height:auto;width:500px;}
不出现滚动条
在 iframe 加上 scrolling="no"
<iframe id="iFrame1" name="iFrame1" scrolling="no" width="500" onload="this.height=iFrame1.document.body.scrollHeight" frameborder="0" src="index.html"></iframe>
出现滚动条
在 iframe 加上 scrolling="yes"
<iframe id="iFrame1" name="iFrame1" scrolling="yes" width="500" onload="this.height=iFrame1.document.body.scrollHeight" frameborder="0" src="index.html"></iframe>