0

我已经通过这段代码加载了一个组合框。

@Html.DropDownListFor(model => model.OEValue, new
SelectList(Enum.GetValues(typeof(ICS.Base.Client.Utility.EnumOperationFunctionality))),
new { id = "cboOEValue", style = "width: 225px;" })

cboOEValue现在我想要by的选定值EnumOperationFunctionality

4

2 回答 2

0

组合框中的所有项目共享相同的“名称”属性。如果您使用的是 jquery,则非常简单,只需使用以下内容即可获取选定项目。

$('input[name=OEValue]:checked')

或者你可以使用基本的 javascript

var all = document.getElementsByName('OEValue');
var selected = [];
for(var i = 0; i < all.length; i++){ 
    if(all[i].checked) 
        selected.push(all[i].value);
}
于 2013-03-16T06:21:24.417 回答
0

可以帮助你吗

并从 javascript 中的组合框中获取价值

var e = document.getElementById("cboOEValue ");
于 2013-03-16T05:21:20.967 回答