jQuery ajax - serialize() 方法-輸出序列化表單值

來源:互聯網
上載者:User

標籤:

定義和用法

serialize() 方法通過序列化表單值,建立 URL 編碼文本字串。

您可以選擇一個或多個表單元素(比如 input 及/或 文字框),或者 form 元素本身。

序列化的值可在產生 AJAX 請求時用於 URL 查詢字串中。

文法
$(selector).serialize()

<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){  $("button").click(function(){    $("div").text($("form").serialize());  });});</script></head><body><form action="">First name: <input type="text" name="FirstName" value="Bill" /><br />Last name: <input type="text" name="LastName" value="Gates" /><br /></form><button>序列化表單值</button><div></div></body></html>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Insert title here</title><script type="text/javascript" src="js/jquery-1.8.3.min.js"></script><script type="text/javascript">$(function(){    $(":submit").click(function(){        alert(1);            alert($("form").serialize() );                });    /* $("#username").blur(function(){    var values =    $("#username").val();    if(values==""){    alert("使用者名稱不可為空,請重新輸入");    }    $.ajax({        url :"formServlet?username="+values, //請求的地址        //data :values ,//要發送的資料        type :"get",//請求的方式        dataType :  "text"  ,//伺服器響應的資料類型 json text  xml html script        success : function(data,status,xhr){ //成功後執行的代碼                    //alert(data);                if(data=="使用者名稱可以使用"){                    $("#username").css("border-color","green");                }else{                    $("#username").css("border-color","red");                }            },        error : function(error,status,xhr){//失敗後執行的代碼                alert("非同步請求出錯");        }    }); }); */});</script></head><body><form  method="POST" name="f1"><table align="center"><th>請輸入註冊資訊:</th><tr>  <td>使用者名稱:</td>  <td><input type="text" id="username" name="username" /></td><!--    onblur="selectUserName()"  --></tr><tr>  <td>密&nbsp;&nbsp;碼:</td>  <td><input type="password" name="pass" /></td></tr><tr>  <td>確認密碼:</td>  <td><input type="password" name="repass"/></td></tr><tr>  <td>暱稱:</td>  <td><input type="text" name="nickname" /></td></tr><tr>  <td>真實姓名:</td>  <td><input type="text" name="realityname"/></td></tr><tr>  <td><input type="submit" value="提交" /></td>  <td><input type="reset" value="重設"/></td></tr></table></form></body></html>

 

jQuery ajax - serialize() 方法-輸出序列化表單值

相關文章

聯繫我們

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