Jquery : ajax 提交Form

來源:互聯網
上載者:User

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'},注意將同名的放在一個數組裡。

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.