任何想法如何在JQueryMobile中实现load more选项。在我的应用程序中,我需要提取大量数据,并希望通过单击Listview最后一行上的“加载更多”数据选项来加载前20并使用户加载更多数据。
答案 0 :(得分:4)
这应该有效:
$('#loadmore-link').click(function() {
// remove the "load more" link
$(this).remove();
// get more LI elements (probably with a $.get())
$('ul').append('<li>More list items</li>');
// update the list view
$('ul').listview('refresh');
});