0

我想用窗口的高度制作一个 div,但高度可以自动升级吗?

$(document).ready(function() {

    var hpd = $(document).height();
    var hph = $(".header").height();

    $('.wrapper').css({height: hpd })
    $('.contenido').css({height: hpd-hph-1 })

});
4

1 回答 1

3

尝试这个

$(document).ready(function(){
   $(window).resize(function(){
            $(".example").height ($(this).height());
     });
});
于 2013-11-02T19:49:23.783 回答