8

我有这种工作和平的代码,它显示在我的 MVC3 Razor Web 应用程序中填充一个 DropDownList。

       @Html.DropDownListFor(x => x.ReminderTime,
            new SelectList(Model.RemindersList, "Item1 ", "Item2"))

我需要保留 DropDownList 填充但禁用它,因此用户无法选择列表中的值。

你能指出我正确的方向吗?请给我一个代码示例。谢谢!

4

2 回答 2

19

像这样,通过指定 HTML 属性。DropDownListFor

@Html.DropDownListFor(
    x => x.ReminderTime,
    Model.RemindersList,
    new { disabled = "disabled" }
)
于 2013-01-22T09:23:15.837 回答
1

我的解决方案感谢 Ravi hit

    @Html.DropDownListFor(x => x.ReminderTime,
                 new SelectList(Model.RemindersList, "Item1 ", "Item2"), new { disabled = "disabled" })
于 2013-01-22T09:41:10.773 回答