.outerheight()有问题

时间:2019-04-21 22:49:44

标签: jquery html

我在计算导航器窗口的实际大小时遇到​​问题,它返回的数字比预期的大。

实际代码如下:

function homeFullScreen() {

    var homeSection = $('.home');
    var windowHeight = $(window).outerHeight();

    if (homeSection.hasClass('home-fullscreen')) {

        $('.home-fullscreen').css('height', windowHeight);
    }
}

还尝试了.innerHeight()和.height(),但是不起作用。预期输出为820px,但结果为:

.home { height: 47677px; }

即使修改导航器窗口的宽度,此数字也会更改。在移动设备中,这个数字要高得多。

有人知道这里发生了什么吗?

谢谢

亚历杭德拉|阿莱雷

0 个答案:

没有答案