リストでは、リストアイテムに追加data-attributes
してIDを保存したり、特定のリストアイテム用に取得するデータを識別するために使用したりすることができます。
<ul data-role="listview" id="my-listview">
<li data-id="3348"><img src="/css/images/loading.gif" /></li>
</ul>
jQuery MobileローディングスピナーのGIFバージョンを使用すると、それ自体がアニメーション化されることに注意してください。
次に、各AJAXリクエストのコールバック関数を使用して、各リストアイテムにデータを追加できます。
//cache all list-items
var $listItems = $('#my-listview').children();
//loop through each list-item
$.each($listItems, function (index, element) {
//cache this specific list-item for later use (in the callback)
var $listItem = $listItems.eq(index);
$.ajax({
url : 'some-script.php',
data : { id : $(this).attr('data-id') },
type : 'post',
success : function (response) {
//if the server returns valid HTML, we can just append it to the list-item
$listItem.find('img').replaceWith(response);
},
error : function (jqXHR, textStatus, errorThrown) {
/*Don't forget to handle errors*/
$listItem.find('img').replaceWith('<span>An error occured, please try again later.</span>');
}
});
});