我有以下代码将更多内容附加到 Div 但不确定在何处添加图像加载器,以便在添加新内容之前显示在页面底部。
$(window).scroll(function () {
if ($(window).scrollTop() == $(document).height() - $(window).height()) {
$.getJSON("http://howtodeployit.com/?json=recentstories", function(data) {
newposts = data.posts.slice(currentPostcount, currentPostcount + desiredPosts);
$.each(newposts, function(key, val) {
//Append new contents
$("#postlist").listview().listview('refresh');
});
});
}});
我已经尝试过了,但它需要 AJAX:
beforeSend: function() { $('#loader').show(); },
complete: function() { $('#loader').hide(); },