gpt4 book ai didi

javascript - 使用 jquery 和 json 更改标签文本

转载 作者:行者123 更新时间:2023-12-03 12:26:50 25 4
gpt4 key购买 nike

我有一个本地 JSON,我试图根据节点 ID 更改标签的文本。我对 js 和 json 很陌生。请需要帮助学习基础知识。

JSON:

{
"Collection":
[
{"categoryId": 1,
"cList" : [
{"NodeId": 1, "name": "a", },
{"NodeId": 2, "name": "b", },
{"NodeId": 3, "name": "c", },
{"NodeId": 4, "name": "d", },
{"NodeId": 5, "name": "e",}
]
},

],
}

HTML:

<div><label></label></div>

我的 JSON 中有一个名为 nodeId 的字段,它有一些唯一的 id 值。我的 html 中的标签数量应该是五个,并且应该是动态的,并且每个标签应该有相应的 json 文本

最佳答案

the labels should be five in number in my html which should be dynamic and each label should have corresponding json text

您可以尝试这样的操作( Example ):

var nodes = $obj.Collection[0].cList;
$('label').each(function(k, v){
$(this).text(nodes[k].name);
});

关于javascript - 使用 jquery 和 json 更改标签文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24157382/

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