我正在尝试制作动态 iFrame 高度以适应页面内容。
我有两页。index.php 和 example.html
我将“example.html”作为 iFrame 插入“index.php”中,“example.html”中的内容高度是可变的。
这是我在“index.php”中的代码
<iframe src="example.html" name="iframe1" id="myiframe" marginwidth="0"
marginheight="0" align="top" scrolling="no" width="100%" height="auto" frameborder="0">
</iframe>
<script type="text/javascript">
var f = document.getElementById("myiframe");
f.onload = function() {
this.style.height = this.contentWindow.document.body.offsetHeight + "40px";
}
</script>
我的 CSS:
#myiframe {
margin: auto;
padding: 0px;
float: left;
height: auto;
min-height: 255px;
height: auto !important; /* for IE as it does not support min-height */
height: 255px; /* for IE as it does not support min-height */
width: 100%;
}
iFrame 工作正常,但动态高度根本不起作用。有什么建议么?谢谢。