Operate the Text and Value selected by Select in jQuery (get/set/Add/delete) _ jquery

Source: Internet
Author: User
This article will introduce in detail jQuery's getting settings, adding and deleting Select selected Text and Value. If you are interested, you can refer to this article, which may be helpful to you. JQuery gets the selected Text and Value of Select:
Select one. Try again.
Syntax explanation:

The Code is as follows:


. $ ("# Select_id"). change (function () {// code...}); // Add an event for Select, triggered when one of the Select events is selected
. Var checkText = $ ("# select_id"). find ("option: selected"). text (); // obtain the selected Text
. Var checkValue = $ ("# select_id"). val (); // obtain the Value selected by Select
. Var checkIndex = $ ("# select_id"). get (0). selectedIndex; // obtain the index value selected by Select
. Var maxIndex = $ ("# select_id option: last"). attr ("index"); // obtain the largest index value of Select


JQuery sets the Text and Value selected by Select:
Syntax explanation:

The Code is as follows:


. $ ("# Select_id"). get (0). selectedIndex = 1; // Select an item whose Select index value is 1.
. $ ("# Select_id"). val (4); // Select an item whose Value is set to 4.
. $ ("# Select_id option [text = 'jquery ']"). attr ("selected", true); // Select an item whose Select Text value is set to jQuery


JQuery adds/deletes Select Option items:
Click once and Select will append an Option
Click to insert an Option at the first position of Select.
Click to delete the largest Option (the last one) of the index values in the Select statement)
Syntax explanation:

The Code is as follows:


. $ ("# Select_id"). append ("Text"); // Append an Option to Select (drop-down)
. $ ("# Select_id"). prepend ("Select"); // Insert an Option for Select (first position)
. $ ("# Select_id option: last"). remove (); // Delete the largest Option (last) index value in Select)
. $ ("# Select_id option [index = '0']"). remove (); // Delete the Option with the index value 0 in Select (the first option)
. $ ("# Select_id option [value = '3']"). remove (); // Delete the Option of '3' in Select.
. $ ("# Select_id option [text = '4']"). remove (); // Delete the Option of '4' Text = '4' in Select.

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.