gpt4 book ai didi

javascript - 文档高度占原始高度的百分比

转载 作者:行者123 更新时间:2023-11-29 10:50:54 27 4
gpt4 key购买 nike

我想在添加元素后重置原始文档的高度以删除多余的空间。我现在的代码是这样的。

    $(document).ready(function() {
var document_height = $(document).height();
document_height = 0.70 * document_height;
$(document).height(document_height);
});

这应该会改变文档高度,但实际上并没有。有更好的方法吗?

最佳答案

我认为您需要使用 $(window) 代替 $(document)

$(document) 指的是整个文档的高度,$(window) 指的是视口(viewport)大小。

如果您确实想要降低文档对象高度的行为,您可以考虑使用 CSS 中的替代方法来删除添加元素后作为“额外空间”的边距/填充。

关于javascript - 文档高度占原始高度的百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10508373/

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