gpt4 book ai didi

jquery - 自动调整div的高度

转载 作者:太空宇宙 更新时间:2023-11-03 23:51:56 24 4
gpt4 key购买 nike

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

$(document).ready(function() {

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

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

});

最佳答案

试试这个

$(document).ready(function(){
$(window).resize(function(){
$(".example").height ($(this).height());
});
});

关于jquery - 自动调整div的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19746024/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com