0

目前我正在使用这样的 ASP.net DropdownList:

<asp:DropDownList ID="CourseSelectionDropdown" DataTextField="DropdownDisplay" DataValueField="CourseId"
            runat="server" Font-Size="Small" Width="250px" OnSelectedIndexChanged="CourseSelectionDropdown_OnSelectedIndexChanged"
            AutoPostBack="True"> 

它看起来相当难看,我想使用类似下面的东西,我将进一步定制(删除图像,并使每个列表项双行 - 很像 facebook 下拉菜单)。

http://tympanus.net/Tutorials/CustomDropDownListStyling/index2.html#

我是 ASP.net 的新手,想要一些关于如何将 HTML/JS 列表项与 C# 代码中的方法链接起来的指针。

我在互联网上搜索了两个小时,没有任何具体或易于阅读的解决方案。

4

1 回答 1

0

通常,您只需使用基于 jQuery 的插件,它将您的 SELECT 转换为更复杂的样式化 HTML。

请参阅:http ://tutorialzine.com/2010/11/better-select-jquery-css3/

于 2013-01-21T15:28:21.117 回答