如何在 HTML 中动态创建列表?

发布于 2024-10-22 03:31:27 字数 54 浏览 0 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黯然 2024-10-29 03:31:27
var arr = ["list", "items", "here"];
$("div").append("<ul></ul>");
for(var i in arr) {
    var li = "<li>";
    $("ul").append(li.concat(arr[i]))
}
var arr = ["list", "items", "here"];
$("div").append("<ul></ul>");
for(var i in arr) {
    var li = "<li>";
    $("ul").append(li.concat(arr[i]))
}
云醉月微眠 2024-10-29 03:31:27

更好的是,

$.each(
    a ,
    function(i,v) {
        $("#target_id").append("<li>" + v + "</li>") ;
    }
) ;

其中 a 是列表内容的对象数组,i 是由 jQuery.each 传递给回调函数的索引变量($.each) 和 v 是该索引的值。


供参考: http://api.jquery.com/jQuery.each/

Better yet,

$.each(
    a ,
    function(i,v) {
        $("#target_id").append("<li>" + v + "</li>") ;
    }
) ;

Where a is an Array of Objects for the list content, i is the index variable passed to the callback function by jQuery.each ($.each) and vis the value for that index.


For reference: http://api.jquery.com/jQuery.each/ .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文