作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想给一个selectfor添加一个类
但是我得到一个错误
@Html.SelectFor(m => m.foo, optionLabel: null, new { @class = "foo12" })
它可以使用文本框:
@Html.TextBoxFormattedFor(m => m.foo, new { @class = "foo" })
我得到的错误:
Named argument specifications must appear after all fixed arguments have been specified.
最佳答案
错误是不言自明的——任何命名参数(在本例中为“optionLabel”)都必须跟在未命名参数之后。所以不是这个:
@Html.SelectFor(m => m.foo, // 1
optionLabel: null, // 2
new { @class = "foo12" } // 3
)
我猜你可能想要这个:
@Html.SelectFor(m => m.foo, // 1
optionLabel: null, // 2
htmlAttributes: new { @class = "foo12" } // 3
)
编辑
你肯定是说 DropDownListFor
,而不是“SelectListFor”?您还需要提供选项。像这样:
@{
var selectList = new SelectListItem[]
{
new SelectListItem { Text = "text", Value = "value" },
};
}
@Html.DropDownListFor(m => m.foo,
selectlist: selectlist,
htmlAttributes: new { @class = "foo" }
)
关于asp.net - Html.SelectFor razor 语法添加类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18774301/
我想给一个selectfor添加一个类 但是我得到一个错误 @Html.SelectFor(m => m.foo, optionLabel: null, new { @class = "foo12"
我是一名优秀的程序员,十分优秀!