自定义$('#form').serialize() var params = $('#xxx_form').serializeObject();(示例代码

Posted 雪洗中关村

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义$('#form').serialize() var params = $('#xxx_form').serializeObject();(示例代码相关的知识,希望对你有一定的参考价值。

 //注意:获取之前 $("#id").removeAttr("disabled");
 $.fn.serializeObject = function () {
        var o = {};
        var a = this.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 || ‘‘;
            }
        });
        var $radio = $(‘input[type=radio],input[type=checkbox]‘, this);
        $.each($radio, function () {
            if (!o.hasOwnProperty(this.name)) {
                o[this.name] = ‘‘;
            }
        });
        return o;
    };

 

以上是关于自定义$('#form').serialize() var params = $('#xxx_form').serializeObject();(示例代码的主要内容,如果未能解决你的问题,请参考以下文章

React开发(245):ant design form自定义验证

React开发(245):ant design form自定义验证

同时提交多个表单

antd 父组件获取子组件中form表单的值

如何为Extjs的form表单组件里面的每一个字段增加一个编辑按钮

如何自定义 Wordpress comment_form();