0
我正在嘗試使用本地JSON信息填充JQM ListView。但是,不會創建任何列表項目。任何幫助,將不勝感激。這裏是我的代碼:使用本地JSON數據填充jQuery Mobile ListView
JSON文件結構:
[
{
"name" : "test"
"calories" : "1000"
"fat" : "100"
"protein" : "100"
"carbohydrates" : "800"
},
{
"name" : "test2"
"calories" : "10000"
"fat" : "343"
"protein" : "3434"
"carbohydrates" : "4343"
}
]
HTML:
<div data-role="page" data-title="Search" id="searchPage">
<ul data-role="listview" data-inset="true" id="searchFood">
</ul>
</div>
JS:
(更新)
$(document).on("pageinit", "#searchPage", function(){
$.getJSON("../JS/food.json", function(data){
var output = '';
$.each(data, function(index, value){
output += '<li><a href="#">' +data.name+ '</a></li>';
});
$('#searchFood').html(output).listview("refresh");
});
});
'$( '#searchFood')HTML(輸出).listview( 「刷新」);' – Omar
感謝奧馬爾 - 但仍然沒有列表項與出現這些變化:/我已更新該帖子上的JS以反映您的建議。 – Tomuke