javascript序列化复选框值

时间:2011-08-11 17:36:14

标签: javascript serialization checkbox checked

我在这个项目中有一个表单,我正在序列化,以便我可以将它传递给PHP并根据输入值进行一些数据库调用。一切正常,直到我在表单中添加了一个复选框并尝试序列化它。

<input type="checkbox" name="reduceHolOT" id="reduceHolOT" checked="checked" ></input>

如何将此复选框的checked或value属性转换为

$('form').serialize()

以及我表单中的其他数据?

2 个答案:

答案 0 :(得分:1)

您应该为复选框添加值属性。你知道的好习惯。

但是如果选中复选框,则serialize应该将字符串“reduceHolOT = on”放入结果中。如果没有选中,则不会显示任何值是否有值。

答案 1 :(得分:0)

也许你应该试试这个:

<!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-1.10.2.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>

Source Link