首页 > 开发 > AJAX > 正文

Javascript 详解封装from表单数据为json串进行ajax提交

2024-09-01 08:33:51
字体:
来源:转载
供稿:网友

摘要: js封装from表单数据为json串进行ajax提交

json封装代码

function getFormJson(frm) { //frm:form表单的id    var o = {};     var a = $("#"+frm).serializeArray();     $.each(a, function() {       if (o[this.name] !== undefined) {         if (!o[this.name].push) {           o[this.name] = [ o[this.name] ];         }         o[this.name].push(this.value || '');       } else {         o[this.name] = this.value || '';       }     });     return o;   }

返回的数据格式为标准的json格式,ajax使用如下:

$.ajax({  type: 'post',  url: 'your url',  data: getFormJson(frm),  success: function(data) {    // your code  }});

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

 

注:相关教程知识阅读请移步到JavaScript/Ajax教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表