从 serializeArray() 中删除一些元素



这是我的序列化数组.我只想获取这两个推送属性。表单中的其他元素不是必需的。 如何删除其他人并仅保留这两个推送值(属性和操作(

 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();

我想你可能会寻找这个

 var result =[];
 a.map(function(item){
     if(item.Name = 'Attribute' ||  item.Name = 'Actions' ) 
         result.push(item);
 })
 console.log(result);

相关内容

  • 没有找到相关文章

最新更新