If you have a select element that looks like this:
(如果您具有如下所示的select元素:)
<select id="ddlViewBy">
<option value="1">test1</option>
<option value="2" selected="selected">test2</option>
<option value="3">test3</option>
</select>
Running this code:
(运行此代码:)
var e = document.getElementById("ddlViewBy");
var strUser = e.options[e.selectedIndex].value;
Would make strUser
be 2
.
(将strUser
设为2
。)
If what you actually want is test2
, then do this: (如果您真正想要的是test2
,请执行以下操作:)
var e = document.getElementById("ddlViewBy");
var strUser = e.options[e.selectedIndex].text;
Which would make strUser
be test2
(这会使strUser
成为test2
)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…