gpt4 book ai didi

javascript - 如何使用 phonegap 将数组值加载到 iPhone 应用程序中的 TableView 中

转载 作者:行者123 更新时间:2023-11-30 18:19:00 26 4
gpt4 key购买 nike

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

"http://pastie.org/4779045"

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

最佳答案

这是一个示例代码

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");

希望你清楚。

关于javascript - 如何使用 phonegap 将数组值加载到 iPhone 应用程序中的 TableView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12542630/

26 4 0
文章推荐: javascript - 将鼠标悬停在文本上以打开图像
文章推荐: javascript - 使用 jquery 访问 iframe 的