Skip to content

Instantly share code, notes, and snippets.

@callblueday
Created September 5, 2013 04:05
Show Gist options
  • Save callblueday/6445972 to your computer and use it in GitHub Desktop.
Save callblueday/6445972 to your computer and use it in GitHub Desktop.
滚动条
当前高度
window.scrollY
最大高度[2]
document.documentElement.scrollHeight - document.documentElement.clientHeight //所有现代浏览器,标准模式。火狐在混杂模式下为 0。2013年7月21日
window.scrollMaxY //火狐,2013年7月21日
document.height - window.innerHeight //Chrome
document.body.scrollHeight //Chrome,2013年7月21日
document.documentElement.clientHeight //火狐,标准模式。2013年7月21日
将页面滚动条移动到结尾:
// 前者为火狐,后者为 Chrome
window.scrollTo(0, window.scrollMaxY || document.body.scrollHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment