Array.remove 函数
从 Array 中移除特定对象的第一个匹配项。 静态函数,使用无需实例化。
语法
var isRemoved = Array.remove(array, item);
参数
-
array
-
准备移除的项目的数组.
item
-
要从 Array 移除的项目。
返回值
移除的项目存在并成功删除则返回true ; 否则返回 false.
备注
使用 remove 从 array中移除项目.项目索引自动减1.
在Firefox浏览器中,调用remove时item 参数设置为 undefined 则移除第一个值为undefined的项目. 其它浏览器中,使用undefined值的item参数则没有效果.
下面的这示例展示了 remove 的使用方法.
JavaScript
var a = ['a', 'b', 'c', 'd', 'e'];
Array.remove(a, 'c');
// 结果返回: "a,b,d,e"
document.write(a,"</p>");
Array.removeAt(a, 2);
// 结果返回//View the results: "a,b,e"
document.write(a,"</p>");