@Html.DropDownList(productOption.Option.Id.ToString(), productOption.ValuesInOptions.ToSelectList(f => f.OptionValue.OptionValue1,
f => f.Id.ToString(),
"Select"));
如何在剃刀视图中向上面的@ Html.DropDownlist()添加一个类?
答案 0 :(得分:3)
您可以使用它的重载,它接受提供html属性:
@Html.DropDownList(productOption.Option.Id.ToString(), productOption.ValuesInOptions.ToSelectList(f => f.OptionValue.OptionValue1,
f => f.Id.ToString(),
"Select"), new {@class = "some-class"});