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);
});