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

假设下拉框如下:

<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

你可能感兴趣的:(JavaScript,select,下拉框,combo)