0

我在 iframe 的高度上遇到了一个奇怪的问题。

在它的父页面中,我们设置它的高度 = 900px,像这样:

    <html lang="en-us">
    <head>
       <?php  include_once "./includes/header.php"; ?>
    </head>
    <body>
       <?php include_once "./includes/top.php" ?>
       <?php include_once "./includes/left_nav.php" ?>
       <section id="content">
       <iframe width="100%"  height="900" id="myFrame" src="./modules/ophthalmology/patients.php" scrolling="no" frameborder="0">
       </iframe>
       </section>
       <?php include_once "./includes/footer.php" ?>
     </body>
     </html>

但它不能显示里面的所有内容。我通过萤火虫检查了元素,然后发现:

    <iframe id="myFrame" width="100%" scrolling="no" height="208" frameborder="0" src="./modules/ophthalmology/patients.php">

高度更改为 208。

但在另一个模块中,它的源代码:

    <html lang="en-us">
    <head>
       <?php  include_once "./includes/header.php"; ?>
    </head>
    <body>
       <?php include_once "./includes/top.php" ?>
       <?php include_once "./includes/left_nav.php" ?>
       <section id="content">
       <iframe width="100%"  height="900" id="myFrame" src="./modules/csvfileupload/index.html" scrolling="no" frameborder="0">
       </iframe>
       </section>
       <?php include_once "./includes/footer.php" ?>
     </body>
     </html>            

它改为:

    <iframe id="myFrame" width="100%" scrolling="no" height="930" frameborder="0" src="./modules/csvfileupload/index.html">

这两者唯一的不同就是src文件不同,第一个是patients.php,第二个是index.html。所有其他人都是一样的。

我检查了内容的元素,它是css:

    #content {
       border: 1px solid;
       border-bottom-left-radius: 4px;
       border-bottom-right-radius: 4px;
       margin: 0;
       min-height: 600px;
       overflow: visible;
       padding: 15px 5px 15px 230px;
    }

而且我还发现header.php中有一个js函数:

    function sizeFrame() {
        var F = document.getElementById("myFrame");
        if(F.contentDocument) {
            F.height = F.contentDocument.documentElement.scrollHeight+30; //FF 3.0.11, Opera 9.63, and Chrome
        } else {
            F.height = F.contentWindow.document.body.scrollHeight+30; //IE6, IE7 and Chrome
        }
    }
    window.onload=sizeFrame;  

有什么问题?

4

1 回答 1

0

对于嵌入了 的 HTML 文档iframe,您的 JavaScript 代码只需将 30 添加到元素的height属性值。iframe这解释了值 930。与此处的目标相反,scrollHeight您获得的值只是内联框架元素的高度,而不是嵌入文档的内在高度要求。

对于 HTML 以外的类型的嵌入文档,可能会发生奇怪的事情。例如,如果它是纯文本文件,则该scrollHeight值可能反映固有的高度要求,从其中的行数得出。在不知道服务器在./modules/ophthalmology/patients.php请求时返回什么的情况下,我只能猜测它是非 HTML 的。

于 2012-08-11T21:59:54.277 回答