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 に答える