情景:
我有一个整数和布尔字典。
我想绕着字典循环。如果字典的值为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
}
}
});
我该怎么做?
答案 0 :(得分:1)
实际上有另一种方法可以做到这一点,我建议
var map = $.map(Model.RPDisplay, function(n) {
if(n.value)
return n;
});
现在你有一系列真值项目。