从数组中移除项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从数组中移除项相关的知识,希望对你有一定的参考价值。
This extends arrays withe a removeItems operation to remove all occurances of fromusage: myArray.removeItems("words");
Array.prototype.removeItems = function(item) { var i = 0; while (i < this.length) { if (this[i] == item) { this.splice(i, 1); } else { i++; } } return this; }
以上是关于从数组中移除项的主要内容,如果未能解决你的问题,请参考以下文章