码迷,mamicode.com
首页 > Web开发 > 详细

jquery获取表单中的数据

时间:2019-12-01 09:45:46      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:serialize   pre   inpu   BMI   gif   text   user   cti   val   

????????? ?<form>

????????????? ? <input name="username" type="text"/>

????????????? ? <input name="password" type="password"/>

????????????? ? <input id="submitButton" type="button" value="submit">

????????????</form>

?????????????$("#submitButton").click(function(){
????????????????????var data = {};
    ? ? ????????var t = $('form').serializeArray();
    ? ? ????????$.each(t, function() {
    ? ? ??????? ?????data?[this.name] = this.value;
    ? ? ????????});
    ? ? ????????alert(JSON.stringify(data));
????????????});

jquery获取表单中的数据

标签:serialize   pre   inpu   BMI   gif   text   user   cti   val   

原文地址:https://www.cnblogs.com/jichi/p/11965106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!