gpt4 book ai didi

jquery - 使用jquery遍历json数据

转载 作者:行者123 更新时间:2023-12-01 01:59:08 25 4
gpt4 key购买 nike

我有以下 json 数据

[
{
id: "79",
title: "Web+Infographics",
path: "web-infographics"
},
{
id: "80",
title: "Miscellaneous",
path: "miscellaneous"
},
{
id: "81",
title: "Entertainment",
path: "entertainment"
}
]

我想使用 jquery 获取 id、标题和路径,我该怎么做?提前致谢。

最佳答案

很简单,使用jQuery.each:

$.each(data, function (index, item) {
console.log(item);
});

但是,您实际上并不需要 jQuery 来完成这个简单的任务,请尝试一下 native Array.prototype.forEach:

data.forEach(function (item) {
console.log(item);
});

如果您必须支持较旧的浏览器并且不想依赖库,则 for 循环可以解决问题:

for (var i = 0; i < data.length; ++i) {
var item = data[i];
}

关于jquery - 使用jquery遍历json数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17947796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com