2013-02-27 48 views
1

我正在與RazorC#一起在MVC 4的web項目中工作。我已經使用@Html.DropDownList動態顯示項目。在mvc4中動態生成@ html.dropdown控件的工具提示

我想爲@Html.DropDownList的每一項設置ToolTip。這是我的代碼:

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

回答

1

根據this沒有這樣的DropDownList的機會,但

您可以使用jQuery

<script type="text/javascript"> 

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