javascript 加入 移除数组元素
Posted petewell
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 加入 移除数组元素相关的知识,希望对你有一定的参考价值。
摘要:javascript 加入 移除数组元素
记录一下
???????????????? //移除数组??????????????Array.prototype.removeItems = function(itemsToRemove) ...
??????????????????var j = 0;
??????????????????while (j < this.length) ...
??????????????????????if (this[j] == itemsToRemove) ...
??????????????????????????this.splice(j, 1);
?????????????????????? else ...
??????????????????????????j++;
??????????????????????
??????????????????
??????????????
??????????????
??????????????//加入数组
??????????????Array.prototype.addItems = function(itemsToAdd) ... this.push(itemsToAdd);
以上是关于javascript 加入 移除数组元素的主要内容,如果未能解决你的问题,请参考以下文章