我想尝试加载新内容,而不会让用户注意到。我尝试过使用带动画的load()和load(),但它仍然很明显。我还能做什么让新div内容无缝加载?
我到现在为止:
$('#messagefeed').load(document.URL + ' #messagefeed', function(){
$(this).css('opacity',0).stop().animate({"opacity": 1}); });;
这只是淡入。
(在我将新元素添加到div messagefeed之间)。