我正在使用MVC 4
和Razor
在C#
开展网络项目。我使用@Html.DropDownList
动态显示项目。
我想为ToolTip
的每个项目设置@Html.DropDownList
。这是我的代码:
@Html.DropDownList("Config_Industry", ViewBag.Industry as IEnumerable<SelectListItem>, "Please Choose Item", new
{
@class = "drpDownCustomEngineered",
@style = "width: 258px;"
})
答案 0 :(得分:1)
根据this,DropDownList
没有这样的机会,但是
您可以使用jQuery
:
<script type="text/javascript">
$(function() {
$("#CategoryID option").each(function() {
$(this).attr({'title': $(this).html()});
});
});
</script>