Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用窗口的高度制作一个 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()); }); });