我们有一个 Web 应用程序,当我们到达页面底部时,我们会自动加载更多内容,如下所示:
$window
.on('scroll', function () {
var
$this = $(this)
;
if ($this.scrollTop() == $document.height() - $window.height()
&& $('#product-list').hasClass('has-more')) {
// load more content
}
})
我们目前在没有更多可用内容时删除的父元素上使用“拥有更多”类。
我对这种方法不太满意,有什么想法吗?