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