使用ajax時,經常須要拼裝input數據爲'name=abc&sex=1'這種形式,用JQuery的serialize方法能夠輕鬆的完成這個工做!jquery
jQuery ajax - serialize() 方法定義和用法ajax
serialize() 方法經過序列化表單值,建立 URL 編碼文本字符串。this
您能夠選擇一個或多個表單元素(好比 input 及/或 文本框),或者 form 元素自己。編碼
序列化的值可在生成 AJAX 請求時用於 URL 查詢字符串中。spa
jQuery ajax - serialize() 方法語法orm
$(selector).serialize()對象
jQuery ajax - serialize() 方法詳細說明blog
.serialize() 方法建立以標準 URL 編碼表示的文本字符串。它的操做對象是表明表單元素集合的 jQuery 對象。ip
jquery ajax - serialize() 方法表單元素有幾種類型:字符串
<form>
<div><input type="text" name="a" value="1" id="a" /></div>
<div><input type="text" name="b" value="2" id="b" /></div>
<div><input type="hidden" name="c" value="3" id="c" /></div>
<div>
<textarea name="d" rows="8" cols="40">4</textarea>
</div>
<div><select name="e">
<option value="5" selected="selected">5</option>
<option value="6">6</option>
<option value="7">7</option>
</select></div>
<div>
<input type="checkbox" name="f" value="8" id="f" />
</div>
<div>
<input type="submit" name="g" value="Submit" id="g" />
</div>
</form>
.serialize() 方法能夠操做已選取個別表單元素的 jQuery 對象,好比 <input>, <textarea> 以及 <select>。不過,選擇 <form> 標籤自己進行序列化通常更容易些:
$('form').submit(function() {
alert($(this).serialize());
return false;
});
輸出標準的查詢字符串:
a=1&b=2&c=3&d=4&e=5
jQuery ajax - serialize() 方法注意:只會將」成功的控件「序列化爲字符串。若是不使用按鈕來提交表單,則不對提交按鈕的值序列化。若是要表單元素的值包含到序列字符串中,元素必須使用 name 屬性。
以上jQuery ajax - serialize() 方法基礎內容轉W3C,下面講解下用jQuery ajax - serialize() 方法時候出現的幾種常見問題 下面分享給你們
請看下面例子如:
<form id="form1">
<input name="name1" type="text" value="pipi" />
<input name="name2" type="radio" value="1" checked/>boy
<input name="name2" type="radio" value="0"/>girl
<textarea name="name3">test</textarea>
</form>
使用:$("#form1").serialize();
結果:name1=pipi&name2=1&name3=test
用jQuery ajax - serialize()方法還有個問題
若是是下面的狀況:www.2cto.com
<form id="form1">
<input name="name" type="text" value="pipi" />
<input name="blog" type="text" value="blue submarine" />
</form>
使用:$("#form1").serialize();
結果:name1=pipi&blog=blue+submarine
就是如何能讓+號變回空格呢?