给数组增加remove函数

//给数组增加indexOf函数
Array.prototype.indexOf = function(val) {
for (var i = 0; i < this.length; i++) {
if (this[i] == val) return i;
}
return -1;
};

//给数组增加remove函数
Array.prototype.remove = function(val) {
var index = this.indexOf(val);
if (index > -1) {
this.splice(index, 1);
}
};

使用:
vm.recordArr.remove(record);
posted @ 2019-05-29 15:07  听风者丶  阅读(222)  评论(0编辑  收藏  举报