JQuery adds or deletes nodes to or from an element, such as select

Source: Internet
Author: User

JQuery gets the selected Text and Value of Select:
Copy codeThe Code is as follows:
Var checkText = jQuery ("# select_id"). find ("option: selected"). text (); // obtain the selected Text
Var checkValue = jQuery ("# select_id"). val (); // obtain the option Value selected by Select
Var checkIndex = jQuery ("# select_id"). get (0). selectedIndex; // obtain the index value selected by Select
Var maxIndex = jQuery ("# select_id option: last"). attr ("index"); // obtain the largest index value of Select

JQuery adds/deletes Select Option items:
Copy codeThe Code is as follows:
JQuery ("# select_id"). append ("<option value = 'value'> Text </option>"); // append an Option to Select (drop-down)
JQuery ("# select_id"). prepend ("<option value = '0'> Select </option>"); // insert an Option for Select (first position)
JQuery ("# select_id option: last"). remove (); // Delete the maximum Option of the index value in Select (last)
JQuery ("# select_id option [index = '0']"). remove (); // Delete the Option with the index value 0 in Select (the first option)
JQuery ("# select_id option [value = '3']"). remove (); // Delete the Option of '3' in Select
JQuery ("# select_id option [text = '4']"). remove (); // Delete the Option of '4' Text = '4' in Select

Clear content:
Copy codeThe Code is as follows:
JQuery ("# select_id"). empty ();

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.