4

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

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

$(function() {

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

    console.log('scroll ended');

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

    });

});
4

1 回答 1

4

试试这个功能

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

检查这个JSFIDDLE

于 2013-09-09T07:24:43.313 回答