- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 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/
我是一名优秀的程序员,十分优秀!