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

js数组移除指定对象或下标i

时间:2017-01-20 17:21:47      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:pre   move   function   prototype   color   code   class   下标   length   

非常常用的一段代码

 1 //数组移除指定对象或下标i
 2 Array.prototype.remove = function (obj) {
 3     for (var i = 0; i < this.length; i++) {
 4         var temp = this[i];
 5         if (!isNaN(obj)) {
 6             temp = i;
 7         }
 8         if (temp == obj) {
 9             for (var j = i; j < this.length; j++) {
10                 this[j] = this[j + 1];
11             }
12             this.length = this.length - 1;
13         }
14     }
15 }

 

js数组移除指定对象或下标i

标签:pre   move   function   prototype   color   code   class   下标   length   

原文地址:http://www.cnblogs.com/yijinc/p/6323187.html

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