当前位置:Gxlcms > JavaScript > 序列化form表单教程详解

序列化form表单教程详解

时间:2021-07-01 10:21:17 帮助过:19人阅读

这篇文章主要介绍了form表单序列化操作,通过将表单中的键值序列化为可提交的字符串,并附上代码实例详细讲解了运行之后的结果,需要的朋友可以参考下

form的序列化,即将表单中的键值序列化为可提交的字符串

表单


 <form id="target">
  <select name="age">
   <option value="age1">20</option>
   <option value="age2" selected>21</option>
  </select>
  <input name="name" value="Cynthia">
  <label>passsword</label>
  <input type="password" name="password" value="123456">
  <input type="hidden" name="salery" value="3333">
  <textarea name="description" cols="15" rows="5">description</textarea>
  <input type="checkbox" name="hobby" value="football" checked> Football
  <input type="checkbox" name="hobby" value="basketball"> Basketball
  <input type="radio" name="sex" value="Female" checked> Female
  <input type="radio" name="sex" value="Male"> Male
 </form>

方法一


结果:

方法二


结果:

方法三


结果:

以上就是序列化form表单教程详解的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行