码迷,mamicode.com
首页 > 编程语言 > 详细

JS删除数组中的某个元素

时间:2017-04-13 20:16:53      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:prototype   nbsp   key   for   代码   title   this   keyword   remove   

首先可以给js的数组对象定义一个函数,用于查找指定的元素在数组中的位置,即索引,代码为:

1 Array.prototype.indexOf = function(val) {
2 for (var i = 0; i < this.length; i++) {
3 if (this[i] == val) return i;
4 }
5 return -1;
6 };

 

然后使用通过得到这个元素的索引,使用js数组自己固有的函数去删除这个元素:
代码为:

1 Array.prototype.remove = function(val) {
2 var index = this.indexOf(val);
3 if (index > -1) {
4 this.splice(index, 1);
5 }
6 };
var emp = [‘abs‘,‘dsf‘,‘sdf‘,‘fd‘]

假如我们要删除其中的 ‘fd‘ ,就可以使用:

emp.remove(‘fd‘);

 

JS删除数组中的某个元素

标签:prototype   nbsp   key   for   代码   title   this   keyword   remove   

原文地址:http://www.cnblogs.com/hgs-159/p/6705559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!