<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)
}
答案 0 :(得分:1)
您的问题似乎与动态ID有关,请尝试以下方法: -
$('#<%=TextBox1.ClientID%>').stop(true,true).css({ 'background-color': 'LightGray' });
或者在文本框中设置ClientIdMode="Static"
,如下所示: -
<asp:TextBox ID="TextBox1" ClientIdMode="Static" runat="server"></asp:TextBox>