gpt4 book ai didi

jQuery,增加div的高度以到达窗口底部

转载 作者:行者123 更新时间:2023-12-01 05:07:45 26 4
gpt4 key购买 nike

我的页面中有一个 DIV,它位于页面的中间。这不是标题...

我想知道如何使用 jQuery 设置 div 的高度,使其一直向下到浏览器窗口的末尾。

想法?

到目前为止我已经:

$(window).bind('resize', function() {
refreshWindowDimentions();
});
function refreshWindowDimentions() {
// Height
var newPreviewHeight = document.documentElement.clientHeight;
$("#preview").css("height",newPreviewHeight);
}

但是这会失败,因为它不知道如何从当前 DIV 的位置中减去。

谢谢

最佳答案

您可以使用$('#preview').offset()来获取DIV的当前位置。 offset().top 将为您提供 DIV 顶部的 y 坐标。

还可以考虑使用 $(document).height() 而不是 document.documentElement.clientHeight 来避免跨浏览器问题的麻烦。

关于jQuery,增加div的高度以到达窗口底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4181348/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com