JQuery 判断滚动条是否到底部

 BottomJumpPage: function () {
var scrollTop = $(this).scrollTop();
var scrollHeight = $(document).height();
var windowHeight = $(this).height();
if (scrollTop + windowHeight == scrollHeight) { //滚动到底部执行事件
console.dir("我到底部了"); }
if (scrollTop == 0) { //滚动到头部部执行事件
console.dir("我到头部了"); }
}
$(window).scroll(BottomJumpPage);

  

上一篇:不同浏览器对document.documentElement和document.body的scrollheight ,scrollTop,clientHeight以及判断滚动条是否滚动到页面最底部 【转载】


下一篇:Python学习积累:使用help();打印多个变量;fileno()