$("#select_id").append(""); //Add an option $("#select_id").prepend(" "); //Insert an option in front $("#select_id option:last").remove(); //Remove the Option with the largest index value $("#select_id option[index=' 0']").remove(); //Delete the Option with an index value of 0 $("#select_id option[value='3']").remove(); //Delete the Option with a value of 3 $("#select_id option[text='4']").remove(); //Delete Option with TEXT value 4
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