码迷,mamicode.com
首页 > 编程语言 > 详细

javascript从数组中删除一个元素

时间:2015-04-30 15:40:04      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

Array.prototype.remove = function(val) {
var index = this.indexOf(val);
if (index > -1) {
this.splice(index, 1);
}
};

pubArray.remove(pubArray[i]);

javascript从数组中删除一个元素

标签:

原文地址:http://www.cnblogs.com/lyming/p/4468877.html

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