我有这个 JSON:
{
"global_view": {
"circle_el": {
"simple_view": {
"name": "My Name One"
}
}
"circle_el": {
"simple_view": {
"name": "My Name Two"
}
}
}
}
和这个jQuery函数:
jsonCall_data("data/data.json");
function jsonCall_data(data_source) {
$.ajax({
type:"GET",
url: data_source,
dataType:"json",
success: function (data) {
$(data).find(JSON.global_view).each(function(){
$(this).find(JSON.circle_el).each(function(){
var el_name = $(this).find(JSON.name);
content_container.append(
'<li id="'+ el_name +'"></li>'
)
});
});
}
});
}
我的问题是如何让每个global_el
人创建一个带有一些类/ID的列表,如下所示:
<li id="My Name One"></li> // first circle el
<li id="My Name Two"></li> // second circl el
非常感谢您的帮助,我希望这很清楚。