Home  >  Article  >  Web Front-end  >  jquery implements removing specified value from array_jquery

jquery implements removing specified value from array_jquery

WBOY
WBOYOriginal
2016-05-16 15:53:091072browse

The example in this article describes the jquery implementation of removing the specified value from the array. Share it with everyone for your reference. The specific implementation method is as follows:

var arr = [1, 2, 3, 4, 5];
var removeItem = 2;  
arr = $.grep(arr, function(value) {
 return value != removeItem;
});

I hope this article will be helpful to everyone’s jQuery programming.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn