我在滚动时调用了一个AJAX函数:
// Collecting scroll info
$('.overthrow').each(function() {
var self = this;
var path2root = ".";
var subcategoryId = $(this).attr('data-subcategoryId');
var page = 1;
$(this).bind('scroll', function() {
var scrollAmount = $(self).scrollLeft();
var documentWidth = $(self).data('currentElementPosition') || $(document).width();
var scrollPercent = (scrollAmount / documentWidth) * 100;
if (scrollPercent > 80) {
page++;
console.log("process.php?subcategoryId=" + subcategoryId + "&page=" + page);
// AJAX function for processing JSON
$.ajax({
url: "process.php?subcategoryId=" + subcategoryId + "&page=" + page,
type: "GET",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
for(i = 0 ; i < data.length; i++) {
var articleId = data[i].articleResult.articleId;
var title = data[i].articleResult.title;
var subhead = data[i].articleResult.subhead;
var image = data[i].articleResult.image;
var response = "<td><div class='articleResult'><a href='" + path2root + "/article/article.php?articleId=" + articleId + "'><img src='" + image + "' width='120'/></a><br><h3><a href='" + path2root + "/article/article.php?articleId=" + articleId + "'>" + title.substring(0,25) + "</a></h3></div></td>";
var appendedData = $(self).find("table tbody tr td:last-child").after(response).fadeIn('slow');
$(self).data('currentElementPosition', appendedData.position().left);
};
}
});
};
});
});
我的问题是,一旦第一个响应被附加到内容上,我开始滚动超过80%进入新结果,每个像素我滚动再次调用相同的AJAX函数&amp;再次,而不是等待用户滚动新窗口大小的80%宽度。有效地为每个像素进行AJAX调用,滚动超过80%。
if
语句是错误的路线吗?我应该提供某种类型的回调来动态驱动触发AJAX功能的整数吗?
答案 0 :(得分:1)
我会使用jQuery的one()绑定它一次,然后在ajax的成功回调中重新绑定它(或之后的任何地方)
答案 1 :(得分:1)
另一种方法是保存对AJAX调用后附加到DOM的任何内容的引用,获取其位置,并将滚动位置与之比较。换句话说,假设在上面的示例中,$(this)是插入通过AJAX返回的所有数据的父容器,您可以执行以下操作:
$(this).scroll(function () {
var scrollAmount = $(this).scrollLeft();
var documentWidth = $(this).data('currentElementPosition') || $(document).width()
var scrollPercent = (scrollAmount / documentWidth ) * 100;
if (scrollPercent > 80) {
// AJAX function success
var appendedData = $(data_returned_from_ajax_call).appendTo($(this))
$(this).data('currentElementPosition', appendedData.position().left)
};
});
}
仅仅是一个FYI,需要注意的一点是,jQuery的.offset()方法将为您提供相对于文档的元素位置,而.position()将为您提供相对于其父容器的位置。 / p>