Home  >  Article  >  Web Front-end  >  jQuery method to delete array elements based on element value_jquery

jQuery method to delete array elements based on element value_jquery

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

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.

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