The use of select in JS and jquery

Source: Internet
Author: User
1.jsvar Obj=document.getelementbyid (selectid); obj.options.length = 0; Clear all content obj.options[index] = new Option ("three", 3);  Change the corresponding value obj.options[index].selected = true;  Keep selected Obj.add (New Option ("4", "4")); "Text", "value" var index = obj.selectedindex;obj.options.remove (index);//Delete the selected item 2.jquery$ ("#select_id"). Append ("<option Value= ' Value ' >Text</option> ');  Append an option (drop-down) $ ("#select_id") to the Select. Find (' option:selected '). Text (); Gets the Select selected text$ ("#select_id"). Val (); Gets the Select selected value$ ("#select_id option[index= ' 0"). Remove ();//delete the option$ with an index value of 0 ("#select_id option[value= ' 3 ']"). Remove (); Remove option$ ("#select_id option[text= ' 4") with a value of 3. Remove (); Delete the option$ ("#mselect_id") with a text value of 4. Change (function () {     //Add the action code needed to execute})

  

The use of select in JS and jquery

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.