Created
September 5, 2013 04:05
-
-
Save callblueday/6445972 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
滚动条 | |
当前高度 | |
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