Revision 72ac37e7-e80f-46cf-a7fa-1703234cd67a - Stack Overflow

If you need only the array inside the `DATA`, then do it like this:

 for(var i in response.DATA){
 alert(response.DATA[i]);
 }

Otherwise if you want all the values `tps, tvq, 10.0, and 20.0`, then do it like this:

 for(var i in response.DATA[0]){
 alert(response.DATA[0][i]);
 }

AltStyle によって変換されたページ (->オリジナル) /