首页 > 网站 > WEB开发 > 正文

如何序列化表单数据

2024-04-27 14:08:36
字体:
来源:转载
供稿:网友

如何序列化表单数据

    $.fn.serializeObject = function()        {           var o = {};           var a = this.serializeArray();           $.each(a, function() {               if (o[this.name]) {                   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;        };

调用该函数如下:

dataArray = $("form").serializeObject();


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表