How to loop through an JSON associative array in javascript?
问题 I'm getting a JSON response from the server and i have to loop through the array in javascript and get the values. But I cant seem to loop throught it. The JSON response of the array looks like this: { "1": "Schools", "20": "Profiles", "31": "Statistics", "44": "Messages", "50": "Contacts" } I just want to loop through it to get the ID and Name and populate some values on the page. I have tried: $.each(response, function(key, value) { alert(key + ' ' + value); }); // and for (var key in