Home  >  Article  >  Web Front-end  >  jQuery遍历json中多个map的方法_jquery

jQuery遍历json中多个map的方法_jquery

WBOY
WBOYOriginal
2016-05-16 16:14:271401browse

本文实例讲述了jQuery遍历json中多个map的方法。分享给大家供大家参考。具体实现方法如下:

jQuery.each(data.root,function(key,value){
for(var i = 0 ; i < value.length; i++ ){
  var tmpArr = [];
  var obj = value[i];
  //tmpArr.push(obj["collectDate"]);
  tmpArr.push(3*i);
  tmpArr.push(obj["kpiValue"]);
  
  arr.push(tmpArr);
  myChart.setTooltip(tmpArr);
}

希望本文所述对大家的jQuery程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn