每次刷新页面时,JQuery 都会为窗口高度提供不同的值

JQuery gives different values for window height each time i refresh the page

本文关键字:高度 窗口 刷新 JQuery      更新时间:2023-09-26

为什么当我第一次使用 Google Chrome 加载页面时它返回 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' });