Compatible select to dynamically add options

Source: Internet
Author: User

Code:

Select id = "ddlResourceType" onchange = "getvalue (this )"
/Select

Dynamically delete all options in the select statement:
Document. getElementById ("ddlResourceType"). options. length = 0;

Dynamically delete an option in the select statement:
Document. getElementById ("ddlResourceType"). options. remove (indx );
// This sentence is incompatible. Firefox does not understand the remove method, so an error is reported. Of course, it cannot be removed.

Dynamically Add the option in the select statement:
Document. getElementById ("ddlResourceType"). options. add (new Option (text, value ));

Both IE and FireFox can be tested successfully. I hope you can use it later.
You can also use standard DOM operations, such as document. createElement, appendChild, and removeChild.

Value
Function getvalue (obj)
{
Var m = obj. options [obj. selectedIndex]. value
Alert (m); // obtain the value
Var n = obj. options [obj. selectedIndex]. text
Alert (n); // get text
}

Later, I found the few words at the end of this article and thought I could try dom. Well, it was feasible.

Var sObj = document. getElementById ("ddlResourceType ");

SObj. removeChild (sObj. options [indx]);

In this way, the above sentence is compatible.

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.