jQuery Mobile lazy load list items

前端 未结 3 1761
遇见更好的自我
遇见更好的自我 2021-02-11 01:13

How do you know that you are at the bottom of a list in jQuery Mobile, I need to lazy load in more results when the end of the list is reached?

相关标签:
3条回答
  • 2021-02-11 01:29

    There is a working example of using scrollstart and scrollstop events here, that should get you going in the right direction: http://jsfiddle.net/shanabus/LJTJt/

    Documentation page here: http://jquerymobile.com/test/docs/api/events.html

    Hope this helps!

    UPDATE

    With help from this post, I was able to wire up a better example that does detection against the bottom of the page. If your list view is not in the bottom of the page, this will not work as well. Check the console for some position debug information.

    http://jsfiddle.net/shanabus/LJTJt/1/

    Here it only adds a new item when you reach the bottom of the list.

    0 讨论(0)
  • 2021-02-11 01:48

    Simple code to load more items on reaching page bottom.

     if ($(window).scrollTop() > $('#page1').height() - 500) {
            eventsElement.append('<li><a href="">Stop</a></li>');
            eventsElement.listview('refresh');
     }
    

    For full example,

    see Code here.

    Using jquery-mobile-iscrollview will be better. It provides pull down and pull up events

    Git hub link

    0 讨论(0)
  • 2021-02-11 01:53

    there is a jq mobile plugin names lazyloader that would help .

    link :http://dcarrith.github.com/jquery.mobile.lazyloader

    0 讨论(0)
提交回复
热议问题