是否有任何类似于lazyload的jquery插件的内容

时间:2010-09-24 12:49:54

标签: javascript jquery plugins

我正在搜索jquery pluging,我可以显示3个基于表的记录,并且在滚动它应该为下一个3-10记录做ajax请求。类似于lazyload但是对于内容。任何代码片段都会帮助我。

1 个答案:

答案 0 :(得分:0)

这样的东西?

$(window).scroll(function(){
        if  ($(window).scrollTop() == $(document).height() - $(window).height()){
           // The scrollbar is at the bottom of the screen
           // Do your ajax call here and populate a div.
        }
});
相关问题