这是我在javascript中的json响应。
{"1": {"11": "51","12": "52","13": "53","14": "54","15": "55"},"2": {"11": "51","12": "52","13": "53","14":"54","15": "55"},"4": {"11": "51","12": "52","13": "53","14": "54","15": "55"}}
我正在解析这个json,但它没有给出正确的输出。
for(var i=0; i<Object.keys(obj).length; i++)
{
// here how should i parse the json and get all the key and values into the array.
}
由于