我的 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);
});