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.
为什么我第一次用谷歌浏览器加载页面时它返回671,但当我重新加载页面时它返回不同的值
$("#online").css({height: $(window).height()-40-$("#head").height()});
尝试在加载和调整大小时设置布局
$(window).on("load resize", function (e) { $("#online").css({height: $(window).height()-40-$("#head").height()}); });
小提琴
$("#online").css({ height: $(window).height() - 40 - $("#head").height() +'px' });