ajax 詳細解釋:http://www.cnblogs.com/mybest/archive/2011/12/13/2285730.html;html
問題描述:頁面發送ajax請求,服務器端返回代碼老是進入ajax,Error事件。後臺返回代碼以下:ajax
1 [HttpPost] 2 public ActionResult AdapterSercher() 3 { 4 string url = string.Empty; 5 ………… 6 //對url操做 7 ………… 8 return Content(url); 9 10 }
頁面alert查看XMLHttpRequest.readyState狀態:發現錯誤類型parsererror(總共有三種:"timeout", "error", "notmodified" 和 "parsererror");服務器
初步懷疑返回類型錯誤,return Content()方法指定文本類型爲「text/html」,問題依舊;修改Return Content 爲 return Json 問題解決;url