这是我的 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();