返回值:Stringserialize()
把表单元素编码成用于提交的字符串。
-
1.0 新增serialize()
.serialize()
方法能够以标准的 URL 编码表示法来创建一个文本字符串。他可以对一个代表一组表单元素的 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()
方法可以对单独选择的表单元素对象进行操作,比如 <input>
, <textarea>
, 和 <select>
。然而,还有个更方便的方法是,直接选择 <form>
标签来进行序列化操作。
$('form').submit(function() { alert($(this).serialize()); return false; });
于是就生成了一个很标准的查询字符串:
a=1&b=2&c=3&d=4&e=5
注意,只有 "successful controls"(有效控件) 可以被序列化成字符串,其中,提交按钮的值不会被序列化。另外,如果想要一个表单元素的值被序列化成字符串,这个元素必须含有 name
属性。此外,文件选择元素的数据也不会被序列化。
示例:
把一个表单序列化成一个查询字符串,用于通过 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="jquery.min.js"></script>
</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>