Ajax请求,状态200但不进success
为啥?  ///<summary>
  ///Ajax获取分页数据
  ///currPage => 当前页码
  ///</summary>
  function GetData(currPage){
  var where=$("#where").val();
  $.ajax({
  url:'__URL__/AjaxData',
  type:'post',
  dataType:'json',
  data:'currPage='+currPage+'&pageSize=5'+'&where='+where,
  beforeSend:function(){
  $("#grid").datagrid("loading");
  },
  success:function(json){
  alert("710");
  json=decodeURIComponent(json);
  $("#grid").datagrid("loadData",json);
  $("#currPage").val(currPage);
  $("#pageCount").val(Math.ceil(json.total/10));
  $("#grid").datagrid("loaded");
  $("#pageStr").html(ShortPageStr(json.total));
  ShowPageBar();
  },
  error:function(data){
  var json=decodeURIComponent(data.responseText);
  json=eval('('+json+')');
  $("#grid").datagrid("loadData",json);
  $("#currPage").val(currPage);
  $("#pageCount").val(Math.ceil(json.total/5));
  $("#grid").datagrid("loaded");
  $("#pageStr").html(ShortPageStr(json.total));
  ShowPageBar();
  }
  });
  }