代码改变世界

ajax 小记

2013-12-05 11:30  无聊玩博客  阅读(154)  评论(0编辑  收藏  举报
 var options = {
   type : 'POST',//请求类型,post or get
   url : "FinishInstallationAction",//后台action
   data : $.param({
    jsonPageModel : strpagemodel,
    id : gci_id
   }, true),//给后台的参数
   success : function(r, status) {
        //r是后台的返回结果
    window.location = $("base").attr("href") + "index.jsp";
   },//请求成功后触发
   dataType : "json",//参数类型
   error : function(result) {
    ShowAlertInfo("error");
   }
  };//请求失败时触发
  $.ajax(options);