好,朋友们。我有一个类名“more_updates”的链接。我希望每次用户到达页面的 80% 时自动触发加载更多链接。
我列出了 50 种产品。每行包含 5 个带有图像的产品。在底部,我加载了更多链接。如果用户到达第 7 行或第 8 行,则应自动触发加载更多链接。这是我正在使用的代码。但它加载了更多的产品。请告诉我这段代码有什么问题。谢谢
<!-- language: lang-js -->
$(window).scroll(function(){
if ($(window).scrollTop() >= ($(document).height() / 2) - $(window).height()){
if (!flag) {
// if is not loading data, start the call
$('.more_updates').click(); // to invoke the click event of loading updates
}
}
});