.serialize()
returns: string
description: encode a set of form elements as a string for submission.
version added: 1.0.serialize()
運行在一個jquery代表一種形式的元素的集合對象。該表格元素可以是以下幾種類型
<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>,和<選擇。但是,它通常更容易選擇<form>標記為序列化本身:
$('form').submit(function() {
alert($(this).serialize());
return false;
});
this produces a standard-looking query string:
a=1&b=2&c=3&d=4&e=5
只有"成功控制"被序列化到字串。沒有提交按鈕的值被序列化的形式,因為沒有提交使用按鈕。對於表單元素的值被序列化字串中包含的元素必須有一個名稱屬性。從檔案中選擇元素中的資料是不會被序列化。
例如:
序列化形式的查詢字串,這可能是一個ajax請求發送到伺服器。
<!doctype html>
<html>
<head>
<style>
body, select { font-size:12px; }
form { margin:5px; }
p { color:red; margin:5px; font-size:14px; }
b { color:blue; }
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></head>
<body>
<form>
<select name="single">
<option>single</option>
<option>single2</option>
</select>
<br />
<select name="multiple" multiple="multiple">
<option selected="selected">multiple</option>
<option>multiple2</option>
<option selected="selected">multiple3</option>
</select>
<br/>
<input type="checkbox" name="check" value="check1" id="ch1"/>
<label for="ch1">check1</label>
<input type="checkbox" name="check" value="check2" checked="checked" id="ch2"/>
<label for="ch2">check2</label>
<br />
<input type="radio" name="radio" value="radio1" checked="checked" id="r1"/>
<label for="r1">radio1</label>
<input type="radio" name="radio" value="radio2" id="r2"/>
<label for="r2">radio2</label>
</form>
<p><tt id="results"></tt></p>
<script>
function showvalues() {
var str = $("form").serialize();
$("#results").text(str);
}
$(":checkbox, :radio").click(showvalues);
$("select").change(showvalues);
showvalues();
</script>
</body>
</html>