无法控制iframe高度

时间:2012-08-11 21:11:10

标签: css iframe height

我遇到了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>

但它无法显示其中的所有内容。我用firebug检查了元素,然后发现:

    <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;  

有什么问题?

1 个答案:

答案 0 :(得分:0)

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

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