数组对象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