我的jQuery-mobile CSS不起作用。它没有var
时有效,但它只显示一个列表,我有多个要显示。
相关代码:
$.getJSON(url,function(json) {
var la = "";
$.each(json.post,function(i,post) {
la += "<li><a id='id' class='chat' href='#'><img src='afbeelding'><h2>naam</h2><p>Komt nog</p></a></li>";
});
$("ul:jqmData(role='listview')").append(la);
});
答案 0 :(得分:0)
要增强动态添加列表项的标记,请使用以下内容。
$('[data-role=listview]').listview().listview('refresh');
$('[data-role=listview]').listview('refresh');
追加物品后。