我在 Jquery 中有以下字符串
[{
"Key": ["Month", "Dealer Lastname", "Gurpreetttttt Alowaliaaaaaaaaa", "Intekhab Khan", "Intekhab Khan", "Test Test"]
}, {
"Key": ["Jan", 600, 500, 0, 300, 100]
}]
我想解析这个字符串。当我尝试提醒它给我对象对象的数据时
var resp = jQuery.parseJSON(response);
$.each(resp, function (key, val) {
alert(val);
});