Created
December 21, 2018 05:30
-
-
Save Springshen/ba50ea19036cc31cae503dddb16f9dc5 to your computer and use it in GitHub Desktop.
JS 删除数组指定元素
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//查找指定元素的索引 | |
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