1

如何在 IE6 及更高版本的禁用模式下更改 asp 按钮的前景色

4

1 回答 1

0

参考

CSS

[disabled]#DisabledButton
{
    color: #933;
    background-color: #ffc;
}

标记

<asp:Button ID="DisabledButton" runat="server" Text="Hello Guest" 
                                                      Enabled="false" />
于 2012-04-23T17:43:21.607 回答