$.ajax({
type: "POST",
url: "../../WebService.asmx/FindPerson",
data: params, // 參數
contentType: "application/json; charset=utf-8", // 參數格式
dataType: "json", // 回傳格式
success: function(response) {
// 將 WEB SERVICE 回傳的字串轉為物件
var jsonObj = $.parseJSON(response.d);
// 使用 chrome 按 F12 選擇 console 即可看到結果
console.log("Hello, I am " + jsonObj.name);
}
,failure: function(msg) { }
,error: function(msg) { }
});
http://jax-work-archive.blogspot.tw/2011/09/jquery-textarea.html
沒有留言:
張貼留言