将类添加到@ Html.DropDownList Razor

时间:2015-01-13 12:42:09

标签: c# asp.net asp.net-mvc razor html.dropdownlistfor

    @Html.DropDownList(productOption.Option.Id.ToString(), productOption.ValuesInOptions.ToSelectList(f => f.OptionValue.OptionValue1, 
                                               f => f.Id.ToString(), 
                                               "Select"));       

如何在剃刀视图中向上面的@ Html.DropDownlist()添加一个类?

1 个答案:

答案 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"});