这是我的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();
答案 0 :(得分:0)
我想你可能正在寻找这个
var result =[];
a.map(function(item){
if(item.Name = 'Attribute' || item.Name = 'Actions' )
result.push(item);
})
console.log(result);