--- title: Window.scrollMaxY slug: Web/API/Window/scrollMaxY tags: - API - DOM_0 - HTML DOM - 参考 - 属性 - 非标准 translation_of: Web/API/Window/scrollMaxY ---
只读属性Window.scrollMaxY
返回document
可以纵向滚动的最大像素数目
yMax = window.scrollMaxY
yMax
是像素数。// 滚动到页面的底部 let maxY = window.scrollMaxY; window.scrollTo(0, maxY);
不要用 {{domxref("window.innerHeight")}} + window.scrollMaxY 来计算document的总高度,因为 {{domxref("window.innerHeight")}} 也包括了可见的水平滚动条的高度。正确的做法是使用 {{domxref("element.scrollHeight","document.body.scrollHeight")}} 。
参见{{domxref("window.scrollMaxX")}} 和 {{domxref("window.scrollTo")}} 。
这不属于任何规范中的一部分。
{{Compat("api.Window.scrollMaxY")}}