Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个ajax fn。我的数据变量给了我这个响应
[{"id":1,"name":"x"},{"id":2,"name":"y"},{"id":3,"name":"z"}]
我如何获得身份证,姓名。我尝试使用
JSON.Parse(data[i]) for(var i=0; i <data.length; i++){ console.log(data[i].id); }
我的控制台显示数据意外结束。
data = JSON.parse(data) for(var i=0; i <data.length; i++){ alert(data[i].id); alert(data[i].name); }
使用这个。它可能会有所帮助
data=$.parseJSON(data) $.each(data,function(i,e){ alert(e.id); });