hujiapeng
<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>


$(\'form\').submit(function() {
  alert($(this).serialize());
  return false;
});

输出:
a=1&b=2&c=3&d=4&e=5


分类:

技术点:

相关文章:

  • 2021-12-23
  • 2021-08-02
  • 2021-08-02
  • 2021-12-23
  • 2021-12-23
  • 2021-10-24
  • 2021-12-10
猜你喜欢
  • 2021-12-23
  • 2021-08-02
  • 2021-12-23
  • 2021-10-24
  • 2021-08-02
相关资源
相似解决方案