我有这个对象数组
var ArrTdsObjects = [];
function TdMaster(id, HeaderTxt, CurrentIndex, SortOrder, Width, Color, BgColor) {
this.id = id;
this.HeaderTxt = HeaderTxt;
this.CurrentIndex = CurrentIndex;
this.SortOrder = SortOrder;
this.Width = Width;
this.Color = Color;
this.BgColor = BgColor;
}
ArrTdsObjects.push(new TdMaster(
CurTdID,
CurTdInnerTxt,
CurTdCellindex,
CurTdSortOrder,
CurTdWidth,
"color", "bgColor"
)
);
在将一些对象条目添加到数组后
我想消除存储在ArrTdsObjects
基于curTdID
含义:Id
如果较高的单元格编号具有相同的数组中的第一个单元格,则将被省略id
如果它们存在于较高的单元格编号中,我如何消除较低索引编号的数组项目,这意味着数组中最后添加的项目将被保存?