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

Javascript删除数组里的某个元素

时间:2020-04-16 13:22:59      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:strong   pre   asc   str   type   元素   rip   function   for   

Javascript删除数组里的某个元素

删除数组中的某个元素,首先需要确定需要删除元素的索引值。

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);}
}

应用

var temp = [1,5,6,12,453,324];
temp.remove(12);//测试OK

  

Javascript删除数组里的某个元素

标签:strong   pre   asc   str   type   元素   rip   function   for   

原文地址:https://www.cnblogs.com/yu412/p/12711905.html

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