<strong>实例</strong> <br>输出序列化表单值的结果: <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="7629" class="copybut" id="copybut7629" onclick="doCopy('code7629')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code7629"> <br>$("button").click(function(){ <br>$("div").text($("form").serialize()); <br>}); <br> </div> <br><strong>定义和用法</strong> <br>serialize() 方法通过序列化表单值,创建 URL 编码文本字符串。 <br>您可以选择一个或多个表单元素(比如 input 及/或 文本框),或者 form 元素本身。 <br>序列化的值可在生成 AJAX 请求时用于 URL 查询字符串中。 <br><br><strong>语法</strong> <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="99343" class="copybut" id="copybut99343" onclick="doCopy('code99343')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code99343"> <br>$(selector).serialize() <br> </div> <br>详细说明 <br>.serialize() 方法创建以标准 URL 编码表示的文本字符串。它的操作对象是代表表单元素集合的 jQuery 对象。<br><br><strong>表单元素有几种类型</strong>: <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="77316" class="copybut" id="copybut77316" onclick="doCopy('code77316')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code77316"> <br><form> <br><div><inputtype></inputtype></div> <br><div><inputtype></inputtype></div> <br><div><inputtype></inputtype></div> <br><div> <br><textareaname>4 <br></textareaname> </div> <br><div><selectname> <br><optionvalue>5 <br><optionvalue>6 <br><optionvalue>7 <br></optionvalue></optionvalue></optionvalue></selectname></div> <br><div> <br><inputtype></inputtype> <br> </div> <br><div> <br><inputtype></inputtype> <br> </div> <br> </form> <br>.serialize() 方法可以操作已选取个别表单元素的 jQuery 对象,比如 <input>, <textarea> 以及 <select>。不过,选择 <form> 标签本身进行序列化一般更容易些: <br>$('form').submit(function(){ <br>alert($(this).serialize()); <br>returnfalse; <br>}); <br> </form></select></textarea> </div> <br><strong>输出标准的查询字符串</strong>: <br>a=1&b=2&c=3&d=4&e=5 <br>注释:只会将”成功的控件“序列化为字符串。如果不使用按钮来提交表单,则不对提交按钮的值序列化。如果要表单元素的值包含到序列字符串中,元素必须使用 name 属性。