我试图弄清楚如何使用索引从 serializedArray 中删除项目。以下场景:
[
{ 'name' : 'item1', 'value' : '1' },
{ 'name' : 'item2', 'value' : '2' },
{ 'name' : 'item3', 'value' : 3 }
]
现在我想删除'item2' - 我可以使用以下函数 - 但不确定如何删除它 - 是否有某种 unset() 方法或类似的东西:?
serializeRemove : function(thisArray, thisName) {
"use strict";
$.each(thisArray, function(index, item) {
if (item.name == thisName) {
// what to do here ?
}
});
}