js页面 $.ajax({ type: “POST”, dataType: ‘json’, url: “add_vote.php”, data: “touid=”+uid+”&tousername=”+username, success: function(msg){ //json解析方法一 var dataObj=eval("("+msg+")");//转换为json对象 alert(dataObj.goods_list);//输出root的子对象数量 //json解析方法二 var result = JSON.parse(msg); alert(result[key]); 方法二在IE6.7下需要加载js文件才行。json2下载 } }); php页面 $arrall = array(1=>”杨”,2=>”y”); echo json_encode($res);