Learning: Set the dropdownlist value in JS

Source: Internet
Author: User

ProgramRequiredDropdownlist with multiple columns,After selecting one of the items, you need to set the corresponding dropdownlist value.Use the DataGrid to simulate the dropdownlist.

Because we use js to control the selection of DataGrid items, we need to set the items corresponding to dropdownlist in JS as selected

Document. getelementbyid ('ddlgetticketcity'). value = This. cells [2]. innertext ;//

The setting item (the second column here) cannot be hidden, or cannot be found in JS;

If the data initialized by dropdownlist does not include the selected data, a JS error is thrown.

The following methods are recommended:

Function setselected (VAL)
{
VaR F = Document. form1;
For (I = 0; I <F. select1.options. length; I ++)
{
If (F. select1.options (I). value = Val)
{
F. select1.selectedindex = I
}
}
}

I wonder if there is a better way.

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.