标签:i++ func prot 链接 turn pre logs this js数组
原文链接:http://caibaojian.com/js-splice-element.html
Array.prototype.indexOf = function(val) { for (var i = 0; i < this.length; i++) { if (this[i] == val) return i; } return -1; };
然后使用通过得到这个元素的索引,使用js数组自己固有的函数去删除这个元素:
代码为:
Array.prototype.remove = function(val) { var index = this.indexOf(val); if (index > -1) { this.splice(index, 1); } };
这样就构造了这样一个函数,比如我有有一个数组:
var emp = [‘abs‘,‘dsf‘,‘sdf‘,‘fd‘];
假如我们要删除其中的 ‘fd‘ ,就可以使用:·
emp.remove(‘fd‘);
来源:前端开发博客
标签:i++ func prot 链接 turn pre logs this js数组
原文地址:http://www.cnblogs.com/hcxwd/p/7286708.html