-1

这是我的 serializeArray。我只想获取这 2 个推送属性。不需要表单中的其他元素。如何删除其他人并仅保留这两个推送值(属性和操作)

 var a = this.serializeArray();
                a.push({name: "Attributes", value:RuleConfigs.attributeContainers});
                a.push({name: "Actions", value:RuleConfigs.actionsContainers});
                $.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;
            };

这就是我所说的。

var option=$('form').serializearray();
4

1 回答 1

0

我想你可能会找这个

 var result =[];
 a.map(function(item){
     if(item.Name = 'Attribute' ||  item.Name = 'Actions' ) 
         result.push(item);
 })
 console.log(result);
于 2018-03-07T06:53:04.973 回答