滚动结束时调用函数

时间:2013-09-09 07:18:01

标签: jquery

当Scroll到达页面的底部时,我想调用一个特定的函数。

这是我的代码使用但它不适合我。没有控制台错误,但仍无法正常工作。

$(function() {

    var scrollEnded = $.debounce(500, false, function() {

    console.log('scroll ended');

           alert("ok"); // I will call my function here. Just need an alert.

    });

});

1 个答案:

答案 0 :(得分:4)

尝试此功能

$(function(){
   $(window).scroll(function(){
       if($(document).height()==$(window).scrollTop()+$(window).height()){
           alert('I am at the bottom');
           // Here goes your code.
       }
   });
});

选中此JSFIDDLE