使用javascript获取下拉框选中的项

来源:互联网 发布:净值曲线软件 编辑:程序博客网 时间:2024/04/27 22:56

假设下拉框如下:

<select id="ddlViewBy"><option value="1">test1</option><option value="2" selected="selected">test2</option><option value="3">test3</option></select>


 

运行下面的代码:

var e = document.getElementById("ddlViewBy");var strUser = e.options[e.selectedIndex].value;


 

strUser的值将会是2;

运行下面的代码:

var e = document.getElementById("ddlViewBy");var strUser = e.options[e.selectedIndex].text;


 

strUser的值将会是test2
原创粉丝点击