我正在使用 jquery mobile 并且我在 jquery 中有一个数组 makeArray 并且我通过数组的值创建了几个列表视图。一切正常。但是没有显示 jquery mobile 样式的列表视图。而是显示一个没有样式的普通列表视图。这是我的代码:
$(document).ready(function(){
var url = "inventory/inventory.json";
var makeArray = new Array();
$.getJSON(url, function(data){
$.each(data, function(index, item){
if(($.inArray(item.make, makeArray)) == -1){
makeArray.push(item.make);
$('.upper_case')
.append('<li data-icon="list-arrow"> <a href="trade_form.php?='+ item.make +'"><img src="images/car_logo/buick.png" class="ui-li-thumb"/>' + item.make + '</a></li>');
}
});
});
});