我一直在滚动时看到这种页面静默加载的趋势。例如: http://www.adweek.com/brand-marketing/as-soda-consumption-declines-heres-how-coca-cola-is-reshaping-itself/
滚动浏览文章后,会加载新文章并更改网址。
挖掘源代码,无法找到任何内容。有什么想法吗?
答案 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
}
});