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 に答える