Skip to content

Instantly share code, notes, and snippets.

@Springshen
Created December 21, 2018 05:30
Show Gist options
  • Save Springshen/ba50ea19036cc31cae503dddb16f9dc5 to your computer and use it in GitHub Desktop.
Save Springshen/ba50ea19036cc31cae503dddb16f9dc5 to your computer and use it in GitHub Desktop.
JS 删除数组指定元素
//查找指定元素的索引
function arrIndex(val,arr){
for (var i = 0; i < arr.length; i++) {
if (arr[i] == val) return i;
}
return -1;
}
//删除索引元素
function removeCurEle(val,arr){
var index = arrIndex(val,arr);
if (index > -1) {
arr.splice(index, 1);
}
}
//usage
//var selectDeleteItem = [1,2,3,4,5,6];
//removeCurEle(1,selectDeleteItem);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment