jQuery ajax()使用serialize()提交form資料

來源:互聯網
上載者:User

標籤:style   class   blog   c   code   java   

jQuery的serialize()方法通過序列化表單值,建立URL編碼文本字串,我們就可以選擇一個或多個表單元素,也可以直接選擇form將其序列化,如:

 
  1. <form action="">
  2. First name: <input type="text" name="FirstName" value="Bill" /><br />
  3. Last name: <input type="text" name="LastName" value="Gates" /><br />
  4. </form>
 
  1. $(document).ready(function(){
  2. console.log($("form").serialize()); // FirstName=Bill&LastName=Gates
  3. });

這樣,我們就可以把序列化的值傳給ajax()作為url的參數,便於使用ajax()提交form表單了,而不需要一個一個擷取表單中的值然後傳給ajax(),舉例如下:

 
  1. $.ajax({
  2. type: ‘post‘,
  3. url: ‘your url‘,
  4. data: $("form").serialize(),
  5. success: function(data) {
  6. // your code
  7. }
  8. });

使用$.post()、$.get()和$.getJSON()也是一樣的:

 
  1. $.post(‘your url‘, $("form").serialize(), function(data) {
  2. // your code
  3. }
  4. });
  5. $.get(‘your url‘, $("form").serialize(), function(data) {
  6. // your code
  7. }
  8. });
  9. $.getJSON(‘your url‘, $("form").serialize(), function(data) {
  10. // your code
  11. }
  12. });

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.