Set a RadioButtonFor() checked by default within a Foreach loop(在 Foreach 循环中设置默认选中的 RadioButtonFor())
问题描述
我使用 @Html.RadioButtonFor
扩展方法有一个奇怪的行为.我正在使用 foreach 循环来创建 RadioButton 和 By 三元运算符的列表.我正在尝试将尊重条件的人设置为检查,但始终是最后一个被检查的人.我搜索了类似的问题,但我不确定是否找到了一些东西.而且我不想创建/使用自定义 RadioButtonList
.
这是我的视图中的代码:
@foreach(Model.Entities 中的变量项){@Html.RadioButtonFor(m => item.Default, item.EntityId,新的 { @checked = item.Default ?"checked" : "" })//item.Default 是一个布尔值,只有一个设置为 True</div>}但在我的浏览器中,即使 item.Default
为 false
,它始终是最后创建的 checked
.那么有什么事情吗
解决方案 如果存在 checked
属性(无论它的实际值是什么),浏览器都会将按钮视为已选中.这是 HTML5 行为.我猜所有单选按钮都定义了 checked
属性,浏览器将选择最后一个按钮作为最终选择的按钮.
我的解决方案是创建一个自定义 RadioButtonFor 扩展方法,该方法接受一个布尔值作为选中状态,并根据值将选中属性添加到 htmlAttributes 字典.像这样:
public static MvcHtmlString RadioButtonFor(this HtmlHelper htmlHelper, Expression> 表达式, 对象值, 对象htmlAttributes, bool checkedState){var htmlAttributeDictionary = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);如果(检查状态){htmlAttributeDictionary.Add("checked", "checked");}返回 htmlHelper.RadioButtonFor(表达式, 值, htmlAttributeDictionary);}
然后您可以在视图中使用该方法(不要忘记添加您创建扩展方法的名称空间并将其放入配置中),如下所示:
@foreach(Model.Entities 中的变量项){@Html.RadioButtonFor(m => item.Default, item.EntityId, new {/* 其他属性放在这里 *
本文标题为:在 Foreach 循环中设置默认选中的 RadioButtonFor()
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01