1

我正在MVC 4使用RazorC#. 我已经@Html.DropDownList动态地使用了该显示项目。

我想ToolTip@Html.DropDownList. 这是我的代码:

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

1 回答 1

1

据此,没有这样的机会DropDownList但是

你可以使用jQuery

<script type="text/javascript">

  $(function() {
  $("#CategoryID option").each(function() {
      $(this).attr({'title': $(this).html()});
    });
  });
</script>
于 2013-02-27T08:13:20.517 回答