js怎么遍历json数组对象, 如何遍历出content里面的数值,格式如下

js怎么遍历json数组对象,如何遍历出content里面的数值,格式如下varcontent=infoList:[{type:1,typeList:[{ID:101,s... js怎么遍历json数组对象, 如何遍历出content里面的数值,格式如下var content= infoList: [

{ type: 1, typeList: [{ ID: 101, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 }] },

{ type: 2, typeList: [{ ID: 102, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 },
{ ID: 15, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 },
{ ID: 18, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 }] },

{ type: 3, typeList: [{ ID: 11, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 },
{ ID: 13, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 }] },

{ type: 4, typeList: [{ ID: 10, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 },
{ ID: 9, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 }] },

{ type: 5, typeList: [{ ID: 16, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 },
{ ID: 23, startDate: '2016-09-08', endDate: '2016-09-08', adultNum: 0, childrenNum: 0 }] }]

}
展开
 我来答
cp3pul
2016-09-24 · TA获得超过1466个赞
知道小有建树答主
回答量:824
采纳率:92%
帮助的人:178万
展开全部
var typeArr = new Array();
for(var i = 0;i<infoList.length;i++)
{
    typeArr.push(infoList[i].type)   //获取到type的值
    for(var j = 0;j<infoList[i].typeList.length;j++)
    {
        var info = infoList[i].typeList[j];
        alert(info.ID);
        alert(info.startDate);
        alert(info.endDate);
        alert(info.adultNum);
        alert(info.childrenNUm);
    }
}

这样就遍历出了所有的数据了 

追问
感谢,完全是我想要的结果
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式