1

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

1 回答 1

0

要增强动态添加列表项的标记,请使用以下内容。

$('[data-role=listview]').listview().listview('refresh');

$('[data-role=listview]').listview('refresh');

附加项目后。

于 2013-06-08T20:29:15.953 回答