滚动时无提示加载新URL

时间:2017-04-11 17:02:22

标签: jquery html5 loading

我一直在滚动时看到这种页面静默加载的趋势。例如: http://www.adweek.com/brand-marketing/as-soda-consumption-declines-heres-how-coca-cola-is-reshaping-itself/

滚动浏览文章后,会加载新文章并更改网址。

挖掘源代码,无法找到任何内容。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

是的,这些实现寻找用户的scrooling并通过ajax加载新内容。

$(window).scroll(function() {
    if($(window).scrollTop() == $(document).height() - $(window).height()) {
           // ajax call get data from server and append to the div
           // change url
    }
});

请看这里:jQuery load more data on scroll