Maison >interface Web >js tutoriel >JavaScript从数组中删除指定值元素的方法

JavaScript从数组中删除指定值元素的方法

巴扎黑
巴扎黑original
2016-12-06 11:18:261044parcourir

下面的代码使用了两种方式删除数组的元素,第一种定义一个单独的函数,第二种为Array对象定义了一个removeByValue的方法 

Js代码  

function removeByValue(arr, val) {  
  for(var i=0; i<arr.length; i++) {  
    if(arr[i] == val) {  
      arr.splice(i, 1);  
      break;  
    }  
  }  
}  
var somearray = ["mon", "tue", "wed", "thur"]  
removeByValue(somearray, "tue");  
//somearray will now have "mon", "wed", "thur"

为数组对象增加相应的的方法 

Js代码  

Array.prototype.removeByValue = function(val) {  
  for(var i=0; i<this.length; i++) {  
    if(this[i] == val) {  
      this.splice(i, 1);  
      break;  
    }  
  }  
}  
var somearray = ["mon", "tue", "wed", "thur"]  
somearray.removeByValue("tue");  
//somearray will now have "mon", "wed", "thur"


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn