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.
我的页面只包含标题和内容。标题大约是 90 像素,我所有的内容都放在一个 DIV 中。有没有办法改变 DIV 的高度以匹配我的视口高度?
尝试这个
$("#id_of_content_div").height($(window).height()-$("#header").height());
$(window).height() 是视口高度
在调整视口大小时调整内容高度,使用
$(window).resize(function(){ $("#id_of_content_div").height($(window).height()-$("#header").height()); });