如何使用phonegap将数组值加载到iphone app中的tableview中

时间:2012-09-22 09:36:03

标签: javascript html5 cordova

对于phonegap来说是新手。现在我在Lion mac中使用phonegap2.0。我的xcode版本是4.3。现在我使用html为iphone app创建了Tableview。我使用JavaScript创建了包含一些值的数组。请看下面的链接:在下面的链接中,我附上了我的html文件和我的Javascript文件。

"http://pastie.org/4779045"

现在我想在tableview中加载数组值。请一些人帮我加载完成这个问题。

1 个答案:

答案 0 :(得分:2)

以下是示例代码

HTML部分:

<!--HTML code -->
<ul data-role="listview" data-inset="true" id="lstMyList">
</ul>

的Javascript

/*javascript code*/
var i;
var names= new Array();
names[0] = "Gopi";
names[1] = "Vinoth";
names[2] = "Yuvaraj";

for (i=0;i<names.length;i++){
    $('#lstMyList').append('<li><a href="#">'+names[i]+'</a></li>');//append list items to the list view dynamically 
}
//If you add items to a listview, you'll need to call the refresh() method on it to update the styles and create any nested lists that are added.
$('#lstMyList').listview("refresh");

希望它清楚。