A simple example of getting the select value and text value (jquery and javascript)

Source: Internet
Author: User
This article mainly shares the simple sample code for getting the select value and text value. The code is concise and clear. If you need it, refer to section 1. jquery

// Obtain the value $ ("# ddlSubmodel "). val (); // get the text value $ ("# ddlSubmodel "). find ("option: selected "). text ();

2. javascript

// Obtain the value document. getElementById ("ddlSubmodel "). value; // obtain the text value var select = document. getElementById ("ddlSubmodel"); if (select. selectedIndex>-1) {select. options [select. selectedIndex]. innerText ;}

The above is all the content of this article. I hope the content of this article will help you in your study or work. If you have any questions, you can leave a message and share your thoughts. At the same time, I also hope to support PHP!

For more articles on getting select value and text values (jquery and javascript), please follow the PHP Chinese site!

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.