如何在 HTML 中动态创建列表?
在我的 jQuery 移动应用程序中,我想在列表中显示 Web 服务的结果。如何动态创建列表?
In my jQuery mobile app, I want to display the result from a web service in a list. How do I create the list dynamically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更好的是,
其中
a
是列表内容的对象数组,i
是由jQuery.each
传递给回调函数的索引变量($.each
) 和v
是该索引的值。供参考: http://api.jquery.com/jQuery.each/ 。
Better yet,
Where
a
is an Array of Objects for the list content,i
is the index variable passed to the callback function byjQuery.each
($.each
) andv
is the value for that index.For reference: http://api.jquery.com/jQuery.each/ .