我尝试根据ViewBag中的roleId
检查单选按钮,但无论值是什么,始终会检查单选按钮。
这是剃刀:
<input type="radio" id="rdResident" class="userType" checked="@(ViewBag.roleId=="5"?"checked":"false")" />
答案 0 :(得分:5)
所有你需要的单词&#34;检查&#34;。尝试...
<input type="radio" id="rdResident" class="userType" @(ViewBag.roleId==5 ? "checked" : "") />