JQuery获取选择列表选项

时间:2015-10-21 11:59:49

标签: c# jquery dictionary

情景:

我有一个整数和布尔字典。

我想绕着字典循环。如果字典的值为true,那么我希望根据字典键获得特定的选择列表选项。

代码:

$(document).ready(function () {
            @foreach (var item in Model.RPDisplay)
    {
        if (item.Value == true) {
            // Get the option from the select list where the value of the option is equal to item.Key

        }
    }
        });

我该怎么做?

1 个答案:

答案 0 :(得分:1)

实际上有另一种方法可以做到这一点,我建议

var map = $.map(Model.RPDisplay, function(n) {
    if(n.value)
        return n;
});

现在你有一系列真值项目。