使用 Html.RadioButtonFor 检查单选按钮

发布于 2024-11-02 21:45:46 字数 418 浏览 0 评论 0原文

<%= 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

默嘫て 2024-11-09 21:45:46

试试这个:

 <%= Html.RadioButtonFor(m => m.AmortizationTermInYears, true, 
         new { 
              propertyName = "AmortizationTermInYears", 
              onchange = "showAmortizationTermInYears();UpdateField(this);", 
              amortizationTermInYearsRadio = "true",
              checked="checked"
             }
     )
%>

Try this:

 <%= Html.RadioButtonFor(m => m.AmortizationTermInYears, true, 
         new { 
              propertyName = "AmortizationTermInYears", 
              onchange = "showAmortizationTermInYears();UpdateField(this);", 
              amortizationTermInYearsRadio = "true",
              checked="checked"
             }
     )
%>
月朦胧 2024-11-09 21:45:46

您也可以使用

_checked="checked" 

以前工作过的这个。但后来他们
@class = "checked" 已变得更常用。

you can also use

_checked="checked" 

this used to work before. But later on they
@class = "checked" has become more of regular use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文