js 数组删除指定元素

 Array.prototype.remove = function(obj) {
for (var i = 0; i < this.length; i++) {
var temp = this[i];
if (!isNaN(obj)) {//isNaN() 函数用于检查其参数是否是非数字值。
temp = i;
}
if (temp == obj) {//判断当前值,和我想要删除的值是否相等
for (var j = i; j < this.length; j++) {
this[j] = this[j + 1];//若是相等,从i向后顺次向前移动一位
}
this.length = this.length - 1;
}
}
}

注:从其他地方找到的,并非原创。

上一篇:windows phone 8 开发系列(二)Hello Wp8!


下一篇:ASP.NET Web API 数据验证