我尝试在background-color
淡入时更改div
但下面的代码无效。
相反它只有fadeOut
而且在我尝试click
到fadeIn.
时没有显示
$('#divbutton').toggle(function(){
$('#divbutton').text('Show');
$('#message').fadeOut('1000');
} ,
function(){
$('#divbutton').text('Hide');
$('#message').$this.css('background-color', 'red').fadeIn('1000');
}
);
答案 0 :(得分:0)
您对以下行的语法不正确。改变:
$('#message')。$ this.css('background-color','red')。fadeIn('1000');
为:
$('#message')。css('background-color','red')。fadeIn('1000');