$("#btnGet").bind("click",function () { $.ajax({ url: "http://localhost:51571/api/Account/1",type: "GET",dataType:"jsonp",success:function(result) { alert(result[0].Id+","+result[0].Name+","+result[0].Email); } }); });指定dataType为jsonp,而不是json即可! 原文链接:/json/289821.html