--- title: Window.scrollMaxY slug: Web/API/Window/scrollMaxY tags: - API - DOM_0 - HTML DOM - 参考 - 属性 - 非标准 translation_of: Web/API/Window/scrollMaxY ---
{{APIRef}} {{Non-standard_header}}

只读属性Window.scrollMaxY返回document可以纵向滚动的最大像素数目

语法

yMax = window.scrollMaxY

例子

// 滚动到页面的底部
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")}}