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.