标签:style blog color io ar java for sp div
例如数组{1,2,3,4,5}
要把数组里面的3删除得到{1,2,4,5}
<script type="text/javascript"> Array.prototype.indexOf = function(val) { //prototype 给数组添加属性 for (var i = 0; i < this.length; i++) { //this是指向数组,this.length指的数组类元素的数量 if (this[i] == val) return i; //数组中元素等于传入的参数,i是下标,如果存在,就将i返回 } return -1; }; Array.prototype.remove = function(val) { //prototype 给数组添加属性 var index = this.indexOf(val); //调用index()函数获取查找的返回值 if (index > -1) { this.splice(index, 1); //利用splice()函数删除指定元素,splice() 方法用于插入、删除或替换数组的元素 } }; var array = [1, 2, 3, 4, 5]; array.remove(3); </script>
一段实用的代码
Array.prototype.indexOf = function(val) { for (var i = 0; i < this.length; i++) { if (this[i] == val) return i; } return -1; }; Array.prototype.remove = function(val) { var index = this.indexOf(val); if (index > -1) { this.splice(index, 1); } };
对于需要删除的数组,引用 array.remove(val);函数即可array是被删除的数组名val是指定删除的数组中的具体内容
转: javascript 从数组中删除指定值(不是指定位置)的元素
标签:style blog color io ar java for sp div
原文地址:http://www.cnblogs.com/snowbaby-kang/p/4016401.html