0

我正在尝试制作动态 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 工作正常,但动态高度根本不起作用。有什么建议么?谢谢。

4

2 回答 2

1

您可以使用 jquery,可以使用 $(window).height();

<iframe src="example.html" width="100%" class="myIframe">
<p>Hi</p>
</iframe>

<script type="text/javascript" language="javascript"> 
$('.myIframe').css('height', $(window).height()+'px');
</script>
于 2013-11-13T17:41:27.613 回答
1

使用 jQuery,将其放置在父页面中。

$('iframe').load(function () {
    $(this).height($(this).contents().height());
    $(this).width($(this).contents().width());
});

如果它们是不同的子域,您需要将其添加到父页面和 iframe 页面:

    document.domain = "shareddomain.com"
于 2013-11-13T18:09:47.300 回答