Skip to content

Instantly share code, notes, and snippets.

@the1sky
Last active May 11, 2016 09:12
Show Gist options
  • Save the1sky/1c08c2a10f289b31185ea9bd519da3c2 to your computer and use it in GitHub Desktop.
Save the1sky/1c08c2a10f289b31185ea9bd519da3c2 to your computer and use it in GitHub Desktop.
获取页面的scrollTop
var scrollTop = window.pageYOffset //用于FF
|| document.documentElement.scrollTop
|| document.body.scrollTop
|| 0;
see at: http://www.cnblogs.com/ckmouse/archive/2012/01/30/2332070.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment