作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个枚举。根据模型带来的值(value),我必须检查单选按钮。我怎样才能做到这一点?
<%=Html.RadioButton("Role", Role.Viewer)%><%= .Role.Viewer%>
<%=Html.RadioButton("Role",.Role.Reporter)%><%= Role.Reporter%>
<%=Html.RadioButton("Role",Role.User)%><%= Role.User%>
最佳答案
您可以毫无问题地将枚举值转换为 int:
<%=Html.RadioButton("Role", (int)Role.Viewer)%><%= (int)Role.Viewer%>
<%=Html.RadioButton("Role", (int)Role.Reporter)%><%= (int)Role.Reporter%>
<%=Html.RadioButton("Role", (int)Role.User)%><%= (int)Role.User%>
public enum Role {
Viewer = 1,
Reporter = 2,
User = 3
}
<%=Html.RadioButton("Role", (int)Role.Viewer, Model.Role == Role.Viewer)%><%= (int)Role.Viewer%>
<%=Html.RadioButton("Role", (int)Role.Reporter, Model.Role == Role.Reporter)%><%= (int)Role.Reporter%>
<%=Html.RadioButton("Role", (int)Role.User, Model.Role == Role.User)%><%= (int)Role.User%>
关于asp.net-mvc - 如何根据枚举值检查单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2665546/
我是一名优秀的程序员,十分优秀!