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);