保存后文本框背景颜色不变

时间:2014-12-27 13:02:35

标签: jquery asp.net html5 css3

    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

保存后输入框不背景不变         

    function removeMsg() {
        setTimeout(function () {
            $('.NotificationViewerSucess').stop(true, true).fadeOut()
            $('.NotificationViewerError').stop(true, true).fadeOut()
            $('#TextBox1').stop(true, true).css({ 'background-color': 'LightGray' });
        }, 4000)
    }

1 个答案:

答案 0 :(得分:1)

您的问题似乎与动态ID有关,请尝试以下方法: -

$('#<%=TextBox1.ClientID%>').stop(true,true).css({ 'background-color': 'LightGray' });

或者在文本框中设置ClientIdMode="Static",如下所示: -

 <asp:TextBox ID="TextBox1" ClientIdMode="Static" runat="server"></asp:TextBox>