现在,当我替换“foo”div中的内容时,新内容会立即出现.是 有一种方法让新内容慢慢消失. div class="foo"Initial content to be replaced/div$('div.foo').html('New content'); 我知道fadeIn()函数,我问这个问题
有一种方法让新内容慢慢消失.
<div class="foo">Initial content to be replaced</div> $('div.foo').html('New content');
我知道fadeIn()函数,我问这个问题的原因是因为我无法理解它在技术上是如何可能的,因为foo div从来没有被隐藏过,所以它怎么能够“淡入” ”.但是,如果有人能够想到一种最超级的方式.
使用此:$(‘div.foo’).html(‘新内容’).hide().fadeIn();