js中splice方法_js删除数组中指定元素

数组对象splice方法:arr.splice1,1);

这种方式数组长度相应改变,但是原来的数组索引也相应改变


/*
  * 方法:Array.removedx)
  * 功能:删除数组元素.
  * 参数:dx删除元素的下标.
  * 返回:在原数组上修改数组
*/
//经常用的是通过遍历,重构数组.
Array.prototype.remove=
function
dx)
{

if
isNaNdx)||dx>
this
.length){

return
false
;}
for

var
i=0,n=0;i<
this
.length;i++)
{

if

this
[i]!=
this
[dx])
{

this
[n++]=
this
[i]
}
}
this
.length-=1
 }
 a = [
'1'
,
'2'
,
'3'
,
'4'
,
'5'
];
 alert
"elements: "
+a+
"nLength: "
+a.length);
 a.remove0);
//删除下标为0的元素
 alert
"elements: "
+a+
"nLength: "
+a.length);

原文链接:http://www.jb51.net/article/89335.htm

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注