ajax post json格式返回

Ajax.aspx:html

Response.ContentType = "application/json";
Response.Write("{result: '" + Request["Name"] + ",你好!(這消息來自服務器)'}");

$.post("Ajax.aspx", { Action: "post", Name: "lulu" },
		function (data, textStatus){
			// data 能夠是 xmlDoc, jsonObj, html, text, 等等.
			//this; // 這個Ajax請求的選項配置信息,請參考jQuery.get()說到的this
			alert(data.result);
		}, "json");


若是設置 "json"---後端必須返回
1.設置"application/json";
2.返回格式 "{result: '你好!(這消息來自服務器)'}"
3.前端直接用對象
data.result
相關文章
相關標籤/搜索