如何在MVC中的DropDownList中添加占位符

时间:2015-01-03 11:26:12

标签: model-view-controller

我正在尝试在DropDown中使用占位符,但它没有采取。请帮助了解如何在DropDown列表中添加占位符:

@Html.DropDownList("Category", ViewData["Category"] as IEnumerable<SelectListItem>, new { @class="flexselect form-control" ,@placeholder="---Select---"}) 

1 个答案:

答案 0 :(得分:0)

首先placeholder您不需要在@开头使用class,&#39; @&#39;仅适用于DropDownList。对于@Html.DropDownList("Category", ViewData["Category"] as IEnumerable<SelectListItem>, "---Select---", new { @class="flexselect form-control"}) 设置默认文字:

{{1}}