JQuery Mobile Loop添加项目

时间:2011-02-09 13:02:54

标签: jquery ajax

如何在jQuery Mobile中循环和添加列表项?

我发现使用PHP:

while($row = mysql_fetch_array($result))
  {
      echo "<li><h2>" . $row['post_title'] . "</h2>" . $row['post_content'] . "<p class='ui-li-aside'>" . $row['post_date'] . "<strong></p>";
  }

但我没有在我的项目中使用PHP(使用C#webservice,JqueryMobile)。假设我需要添加5个存储在变量Count中的列表项,我如何在jQuery Mobile中实现这一点?

我知道在哪里可以找到使用C#web服务与数据库通信的jQuery Mobile教程吗?

提前致谢...

1 个答案:

答案 0 :(得分:0)

幸运的是,jQuery Mobile继承了jQuery的所有行为。要迭代集合,请尝试使用“.each()”,如下所示:

$(count).each(function(index) {
  // Add item to container here
});

jQuery有很好的文档记录,.each()的相关文档在这里:http://api.jquery.com/each/。学会爱这些文档。