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!