我的代码工作正常,可以在我的MVC3 Razor Web App中显示一个DropDownList。
@Html.DropDownListFor(x => x.ReminderTime,
new SelectList(Model.RemindersList, "Item1 ", "Item2"))
我需要保持DropDownList的填充状态但将其禁用,因此User无法在列表中选择一个值。
你能指出我正确的方向吗?请向我提供代码示例。谢谢!
最佳答案
这样,通过指定HTML属性。 DropDownListFor
@Html.DropDownListFor(
x => x.ReminderTime,
Model.RemindersList,
new { disabled = "disabled" }
)
关于asp.net-mvc - 如何在MVC3 Razor中禁用DropDownListFor?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14455141/