gpt4 book ai didi

javascript - 页面总高度

转载 作者:可可西里 更新时间:2023-11-01 01:26:34 27 4
gpt4 key购买 nike

我正在尝试使用 JavaScript 获取页面的总高度,以便我可以检查页面是否足够长以显示某些内容,但是在我的测试中我无法获取页面的总高度。

我在 Internet 上四处寻找,但似乎没有很好地记录这样的事情,因为我能找到的只有 scrollHeight,正如我可能提到的那样,它不起作用.

有什么方法可以使用 JavaScript 找到它吗?

最佳答案

没有框架:

var _docHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
var _docWidth = (document.width !== undefined) ? document.width : document.body.offsetWidth;

关于javascript - 页面总高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1087920/

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