1

如何更改下拉列表箭头按钮的悬停颜色?在这里,当悬停在下拉菜单上时,它是蓝色的。我想把它改成黄色。怎么能做到这一点?

4

2 回答 2

0

替代解决方案:使用 Ajax DropDownExtender 您可以轻松更改 css 样式。

<ajaxToolkit:DropDownExtender runat="server" ID="DDE"
TargetControlID="TextLabel" 
DropDownControlID="DropPanel" />

访问此链接进行演示:DropDown Demonstration

于 2012-04-10T07:16:23.657 回答
-1

这将在页面加载时完成

foreach(ListItem item in ddlName.Items) {
    if(item.Value == "someStringValue") {
        item.Attributes.Add("style", "color:red")
    }
}

如果这不起作用,您可以将此代码移至下拉列表的 DataBound 事件。

于 2012-04-10T06:57:32.277 回答