动态容器高度(jQuery)

时间:2009-12-14 12:04:40

标签: jquery window

我有一个固定高度(180px)的标题和固定高度的页脚(50px)。我希望容器高度为:窗口高度MINUS标题MINUS页脚。

如何使用jQuery实现这一目标?

编辑添加:如果在窗口调整大小时更新容器高度,那就太棒了!

1 个答案:

答案 0 :(得分:3)

无需使用jquery。

使用css(我标记了使其工作的关键点,您可以相应地更改值):

#header
{
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;          /* KEY POINT */
    overflow: hidden;
}

#footer
{
    position: absolute;    /* KEY POINT */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36px;          /* KEY POINT */
    overflow: hidden;
}

#contents
{
    position: fixed;       /* KEY POINT */
    top: 83px;             /* KEY POINT */
    left: 0;
    right: 0;
    bottom: 39px;          /* KEY POINT */
    right: 0;
    overflow: auto;
}

结果如下:

|----------------------------------------|
|              div#header                |
|            (80px height)               | 
|----------------------------------------|
|                                        |
|              div#contents              |
|         (top 83px, bottom 39px)        |
|                                        |
|----------------------------------------|
|              div#footer                |
|             (36px height)              |
|----------------------------------------|

这模拟旧框架。在此示例中,每个div之间的间隔为3px。

EDIT2 : 如果你使用其他一些绝对定位的div(比如工具提示),你必须添加这个条件以避免在IE7中出现奇怪的闪烁:

<!--[if IE 7]>
    <style type="text/css">
        #header
        {
            position: absolute;
        }
    </style>
<![endif]-->

EDIT3 :好像我没有粘贴整个东西。这一点对于使用IE6非常重要。请注意,这不是通常的表达方式之一。

* html body
{
    /* YOU'LL RECOGNIZE THESE NUMBERS WITH THE EXAMPLE ABOVE */
    padding: 83px 0 39px 0;  
}

* html #contents
{
    height: 100%;
    width: 100%;
}

阅读here了解更多信息。