以编程方式在选择下拉菜单中选择项目 [英] Programmatically choose item in select drop down

查看:118
本文介绍了以编程方式在选择下拉菜单中选择项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个下拉菜单:

 < select> 
< option value =1> 1< / option>
< option value =2> 2< / option>
< / select>

如何以编程方式选择第2项?

  var select = document。解决方案

的getElementsByTagName( 选择)[0];

然后操纵selectedIndex属性(我相信它是一个从零开始的索引):

  select.selectedIndex = 1; 


I have a drop down:

<select>
  <option value="1">1</option>
  <option value="2">2</option>
</select>

How would I select item 2 programmatically?

解决方案

First get a handle on that select somehow:

var select = document.getElementsByTagName("SELECT")[0];

Then manipulate the selectedIndex property (I believe it's a zero-based index):

select.selectedIndex = 1;

这篇关于以编程方式在选择下拉菜单中选择项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆