使用 Html.RadioButtonFor 检查单选按钮
<%= Html.RadioButtonFor(m => m.AmortizationTermInYears, true, new { propertyName = "AmortizationTermInYears", onchange = "showAmortizationTermInYears();UpdateField(this);", amortizationTermInYearsRadio = "true" })%>
我如何告诉这个助手检查这个单选按钮。我尝试在我已经指定的 true
(这是值而不是 isChecked
)参数之后添加 true
,但是没有编译,它表示没有 RadioButtonFor()
定义指定了这 4 个参数。
<%= Html.RadioButtonFor(m => m.AmortizationTermInYears, true, new { propertyName = "AmortizationTermInYears", onchange = "showAmortizationTermInYears();UpdateField(this);", amortizationTermInYearsRadio = "true" })%>
How do I tell this helper to check this radio button. I tried adding true
after the true
I already specified (which is the value not the isChecked
) paramater, but that didn't compile, it said no RadioButtonFor()
definition has those 4 parameters specified.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
您也可以使用
以前工作过的这个。但后来他们
@class = "checked"
已变得更常用。you can also use
this used to work before. But later on they
@class = "checked"
has become more of regular use.