首页 > 代码库 > js遍历json对象

js遍历json对象

for(var o in obj){
   var target = "#num_"+o;
   $(target).text(obj[o].count);
}

o是key

js遍历json对象