我有一个php页面,可从其中获取json中的响应:
[{'com':'something'},{'com':'some other thing'}]
我想循环它,并将每个追加到div。
这是我尝试的:
var obj = jQuery.parseJSON(response); $.each(obj.com, function(key,value) { alert(key+':'+value); }
该警报为undefined,响应为json数组。
undefined
请帮忙。
您的数组具有存储对象{'com':'some thing'} 使用的默认键(0,1):
{'com':'some thing'}
var obj = jQuery.parseJSON(response); $.each(obj, function(key,value) { alert(value.com); });