用于在mvc4中动态生成的@html.dropdown控件的工具提示

时间:2013-02-27 08:07:24

标签: razor asp.net-mvc-4

我正在使用MVC 4RazorC#开展网络项目。我使用@Html.DropDownList动态显示项目。

我想为ToolTip的每个项目设置@Html.DropDownList。这是我的代码:

@Html.DropDownList("Config_Industry", ViewBag.Industry as IEnumerable<SelectListItem>, "Please Choose Item", new
{
    @class = "drpDownCustomEngineered",
    @style = "width: 258px;"                                               
})

1 个答案:

答案 0 :(得分:1)

根据thisDropDownList没有这样的机会,但是

您可以使用jQuery

<script type="text/javascript">

  $(function() {
  $("#CategoryID option").each(function() {
      $(this).attr({'title': $(this).html()});
    });
  });
</script>