Add option options to the select control dynamically in Javascript

Source: Internet
Author: User
When writing a client script, you may need to add the option to the select control. Code Is easier to achieve:
VaR opt = New Option ('mytext', 'myvalue ');
Here, parameter 1 is the value displayed to the user, and parameter 2 is the actual parameter value.
To add an option, you can append it to the options array and delete it. You can set the option value to null. Such:
<SCRIPT type = "text/JavaScript" Language = "JavaScript">
....
Add:
Function btnadd_onclick ()"
{
VaR opt = New Option ('New York ', '1 ');
Document. frmcity. Citys. Options [0] = OPT;
}
Delete:
Function btndel_onclick ()
{
Document. frmcity. Citys. Options [0] = NULL;
}
...
<Form ID = "frmcity" name = "frmcity">
...
<Select name = "citys" id = "citys">
<Option value = "1"> New York </option>
</SELECT>
<Input type = "button" value = "add City" onclick = "btnadd_onclick ()"/>
<Input type = "button" value = "Del City" onclick = "btndel_onclick ()"/>
</Form>
The above Code simply completes the corresponding functions
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.