解析ajax传过来的JSON格式的字符串
$.ajax({ url: "admin/stuInfoAction3!getAjaxStuInfo",data: {"user.username":'中国',"user.password":'456'},dataType:"text",type:"post",success: function(msg){ //msg为前台穿过来的字符串 alert(msg); msg=eval(msg); for(i in msg){ alert(msg[i].xh+" "+msg[i].stuname+" "+msg[i].sex+" "+msg[i].zy+" "+msg[i].age) } } })原文链接:https://www.f2er.com/ajax/163412.html