javascript – 如何根据用户的浏览器尺寸动态设置div高度

前端之家收集整理的这篇文章主要介绍了javascript – 如何根据用户的浏览器尺寸动态设置div高度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用此示例:

http://jsfiddle.net/FhWxh/

HTML:

CSS:

body {
    font: normal 16px/1.5em helvetica,arial,sans-serif
}
p {
    text-align:center;
}
#container {
    width:960px;
    margin:0px auto;
}
#header {
    text-align:center;
    background: #777;
    color:#fff;
    height:50px;
    padding:5px;
}
#content {
    float:right;
    width:610px;
    text-align:center;
    background:#ccc;
    padding:150px 5px;
}
#sidebar {
    float:left;
    width:330px;
    text-align:center;
    height:300px;
    background:#eee;
    padding:15px 5px;
    overflow:auto;
}
#footer {
    clear:both;
    text-align:center;
    background: #555;
    color:#fff;
    height:50px;
    padding:5px;
}

如何将“侧边栏”设置为用户浏览器高度的100%(减去50像素以留出标题空间)?

我相信可以使用javascript获取用户的浏览器高度并将其动态插入到css中,但我不知道该怎么做.

最佳答案
请尝试以下方法

$('#sidebar').height($(window).height() - 50)
原文链接:https://www.f2er.com/jquery/428620.html

猜你在找的jQuery相关文章