码迷,mamicode.com
首页 > 其他好文 > 详细

Arr删除特定项

时间:2014-10-24 18:27:25      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   sp   on   cti   as   type   text   

 Array.prototype.indexOf = function(val) {
for (var i = 0; i < this.length; i++) {
if (this[i] == val) return i;
}
return -1;
};
Array.prototype.remove = function(val) {
var index = this.indexOf(val);
if (index > -1) {
this.splice(index, 1);
}
};

Arr删除特定项

标签:io   ar   for   sp   on   cti   as   type   text   

原文地址:http://www.cnblogs.com/xjt360/p/4048788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!