Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
もっと読み込むボタンを実装する方法を教えてください。
画像への 100 から 150 の URL を含むリストがあります。画面 10 に 1 回押して、ユーザーが下部にある [さらに読み込む] ボタンをタップするのを待つ必要があります。
このような?
$('#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 オプション