我正在开发一个 asp.net mvc3 应用程序。我有一个@Html.DropDownList("abcd")
和一个 @Html.CheckBox("efgh")
。
我想要的是:
如果将选择 DropDownList 的已定义选项,则应禁用 CheckBox。
我想…… 像那样:
@if "defined option" is chosen of DropDownList("abcd") {
disable checkbox("efgh")
我已经找到了如何禁用复选框:
@Html.CheckBox("efgh", new { disabled = "disabled" })
如您所见,我正在使用剃须刀
提前致谢!!你们在这里做得很好:)