我需要动态添加内容,所以一旦用户向下滚动它就会很好,因为我检测到一次用户靠近页面底部的蚂蚁比我添加内容所以用户甚至没有注意到它,但是一旦用户向上滚动,如果我添加内容所有其他页面跳跃黎明,用户可以清楚地看到出现问题。
我的代码:
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() > $(document).height()-100) {
$('#myparrentdiv').append(huge_content);
}
if($(window).scrollTop()<100) {
$('#myparrentdiv').prepend(huge_content); //here we get jumping content
}
});
答案 0 :(得分:0)
你有一个拼写错误而不是prepent。
$(window).scroll(function() { if($(window).scrollTop() + $(window).height() >
$(document).height()-100) { $('#myparrentdiv').append(huge_content); }
if($(window).scrollTop()<100) { $('#myparrentdiv').prepend(huge_content); //here we get jumping content } });