当用户滚动到页面底部时,我正在尝试从数据库中将新内容加载到我的页面。如何实现这一目标?我已经把jquery的ajax和php结合起来,但我不知道。
答案 0 :(得分:1)
我不需要任何插件。 这个
的jQuery代码$(window).scroll(function () {
if ($(window).scrollTop() >= $(document).height() - $(window).height() - 10) {
//Add jQuery ajax code here to fetch data from server/database and append more elements etc
}
});