Jquery的$.ajax方法可以實現ajax調用,要設定url,post,參數等。
如果要提交現有Form需要寫很多代碼,何不直接將Form的提交直接轉移到ajax中呢。
以前的處理方法
如Form代碼如下:
<formid="Form1" action="action.aspx" method="post" >
名稱:<inputname="name" type="text" /><br/>
密碼:<inputname="password" type="password" /><br/>
手機:<inputname="mobile" type="text" /><br/>
說明:<inputname="memo" type="text" /><br/>
<inputtype="submit" value="提 交" />
</form>
當提交後,會跳轉到action.aspx頁面。並可以通過Request.Params["name"]可以取到值。
//將form中的值轉換為索引值對。 function getFormJson(frm) { var o = {}; var a = $(frm).serializeArray(); $.each(a, function () { if (o[this.name] !== undefined) { if (!o[this.name].push) { o[this.name] = [o[this.name]]; } o[this.name].push(this.value || ''); } else { o[this.name] = this.value || ''; } }); return o; } function save_RoomOrder() { var dataPara = getFormJson($('#Form1')); LG.ajax({ loading: '正在儲存資料中...', type: "AjaxHotelManage", method: "Tts_Hotel_RoomOrder", data: dataPara, success: function () { //dg.curWin.f_reload(); dg.curWin.LG.tip('儲存成功!'); }, error: function (message) { LG.tip(message ); } }); }
save_RoomOrder方法第一個參數,是要提交的form,再將格式化後的表單內容傳遞給data。
getFormJson方法將form的元素轉化為json格式索引值對。形如:{name:'aaa',password:'tttt'},注意將同名的放在一個數組裡。