我无法将默认单选按钮设置为“已检查”!我正在使用 @Html.RadioButtonFor :
<div id="private-user">
@Html.RadioButtonFor(m => m.UserType, "type1", new { @class="type-radio" , **@Checked="checked"** }) 1
</div>
<div id="proff-user">
@Html.RadioButtonFor(m => m.UserType, "type2", new { @class="type-radio" }) 2
</div>
是否可以使用 @Html.RadioButtonFor 将单选按钮设置为 cheched ?
谢谢