本文介绍了JQueryMobile Loadmore选项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何想法如何在JQueryMobile中实现加载更多"选项.在我的应用程序中,我需要提取大量数据,并希望加载前20个数据,并通过单击Listview的最后一行上的加载更多"数据选项来使用户加载更多数据.

Any idea how to implement the load more option in JQueryMobile. In my application I need to pull lots of data and would like to load top 20 and make the user load more data by clicking the "load more" data option on the last row of Listview.

推荐答案

这应该有效:

$('#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');
});

这篇关于JQueryMobile Loadmore选项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 07:07