当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery .serialize()用法及代码示例


用法
.serialize() => String

说明:将一组表单元素编码为字符串以进行提交。

  • 添加的版本:1.0.serialize()

    • 此方法不接受任何参数。

.serialize() 方法以标准 URL 编码表示法创建文本字符串。它可以作用于已选择单个表单控件的 jQuery 对象,例如 <input><textarea><select>$( "input, textarea, select" ).serialize();

但是,选择<form> 本身进行序列化通常更容易:

$( "form" ).on( "submit", function( event ) {
  event.preventDefault();
  console.log( $( this ).serialize() );
});

在这种情况下,jQuery 将表单内的成功控件序列化。只有 form 元素会检查它们包含的输入,在所有其他情况下,要序列化的输入元素应该是传递给 .serialize() 方法的集合的一部分。在一个集合中同时选择表单及其子项将导致序列化字符串中的重复项。

注意:只有"successful controls" 被序列化为字符串。由于未使用按钮提交表单,因此没有序列化提交按钮值。对于要包含在序列化字符串中的表单元素的值,该元素必须具有 name 属性。复选框和单选按钮(类型为 "radio" 或 "checkbox" 的 input )的值仅在它们被选中时才包括在内。来自文件选择元素的数据未序列化。

例子:

将表单序列化为可以在 Ajax 请求中发送到服务器的查询字符串。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>serialize demo</title>
  <style>
  body, select {
    font-size: 12px;
  }
  form {
    margin: 5px;
  }
  p {
    color: red;
    margin: 5px;
    font-size: 14px;
  }
  b {
    color: blue;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.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 );
  }
  $( "input[type='checkbox'], input[type='radio']" ).on( "click", showValues );
  $( "select" ).on( "change", showValues );
  showValues();
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 .serialize()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。