Home > Article > Web Front-end > jQuery method to delete array elements based on element value_jquery
The example in this article describes how jQuery deletes array elements based on element values. Share it with everyone for your reference. The details are as follows:
For example, if you delete the element C, you don’t know the subscript of C in this array
var arr = ['a','b','c','d']; arr.splice($.inArray('c',arr),1); alert(arr);
I hope this article will be helpful to everyone’s jQuery programming.