这是我的json
{ "data": [ [ "1", "Skylar Melovia" ], [ "4", "Mathew Johnson" ] ] }
this is my code jquery Code
for(i=0; i<= contacts.data.length; i++) { $.each(contacts.data[i], function( index, objValue ){ alert("id "+objValue); }); }
我得到了我的数据,objValue
但我想分别存储在数组中id
,name
看起来我的代码看起来如下
var id=[]; var name = []; for(i=0; i<= contacts.data.length; i++){ $.each(contacts.data[i], function( index, objValue ) { id.push(objValue[index]); // This will be the value "1" from above JSON name.push(objValue[index]); // This will be the value "Skylar Melovia" from above JSON }); }
我怎样才能做到这一点.