从组合框中选择指定的值

时间:2011-02-16 05:30:14

标签: javascript html javascript-events

是否可以通过单击按钮从组合框中选择指定的值。

1 个答案:

答案 0 :(得分:0)

选项1:

假设您要在名为“sel”

的下拉列表中将值设置为3
<input type="button" value="set to 3" onclick="document.getElementById('sel').value = 3" />

选项2:

如果要将特定文本(比如'myvalue')设置为选定的显示文本(已存在于下拉列表中),则可以使用循环

for (i=0;i<document.getElementById('sel').length;i++)
{
    if ('myvalue' == document.getElementById('sel').options(i).text)
    {
     document.getElementById('sel').options(i).selected = true;
     return;
    }
}