Window.scrollMaxY - Web API 接口参考 编辑
非标准
该特性是非标准的,请尽量不要在生产环境中使用它!
只读属性Window.scrollMaxY
返回document
可以纵向滚动的最大像素数目
语法
yMax = window.scrollMaxY
yMax
是像素数。
例子
// 滚动到页面的底部
let maxY = window.scrollMaxY;
window.scrollTo(0, maxY);
备注
不要用 window.innerHeight
+ window.scrollMaxY 来计算document的总高度,因为 window.innerHeight
也包括了可见的水平滚动条的高度。正确的做法是使用 document.body.scrollHeight
。
参见window.scrollMaxX
和 window.scrollTo
。
规范
这不属于任何规范中的一部分。
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论