Skip to content

Instantly share code, notes, and snippets.

@xincici
Last active September 17, 2015 03:00
Show Gist options
  • Save xincici/4f7fdd5481555c664e8b to your computer and use it in GitHub Desktop.
Save xincici/4f7fdd5481555c664e8b to your computer and use it in GitHub Desktop.
关于网页宽高
网页可见区域宽:window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth
网页可见区域高:window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight
文档高度:document.body.scrollHeight
文档被滚动高度:document.body.scrollTop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment