标签: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‘);
标签:prototype nbsp key for 代码 title this keyword remove
原文地址:http://www.cnblogs.com/hgs-159/p/6705559.html