-2

试图根据窗口大小获得 100% 的高度。

<script>
    $(document).ready(function(){
        var contHeight = $(window).height();
        $('#container').css("height",contHeight + "px");
    });
</script>
4

2 回答 2

1

工作小提琴

http://jsfiddle.net/mzpa4/

于 2012-09-03T14:47:04.733 回答
1

您也可以尝试:

$(window).on('load resize',function(){
    var contHeight = $(window).height();
    $('#container').css("height",contHeight + "px");
});

这样即使用户调整窗口大小,高度也会保持在窗口高度,正如@adeneo 建议的那样

http://jsfiddle.net/mzpa4/3/show/

于 2012-09-03T14:53:08.160 回答