js数组移除指定对象或下标i
Posted The best is yet to come
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js数组移除指定对象或下标i相关的知识,希望对你有一定的参考价值。
非常常用的一段代码
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的主要内容,如果未能解决你的问题,请参考以下文章