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

转: javascript 从数组中删除指定值(不是指定位置)的元素

时间:2014-10-10 21:16:24      阅读:257      评论:0      收藏:0      [点我收藏+]

标签: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

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