jQuery .load()与fadeIn效果

前端之家收集整理的这篇文章主要介绍了jQuery .load()与fadeIn效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图通过AJAX在#primary中使用jQuery加载一个url的#content。它加载但不淡化。我究竟做错了什么?
$('.menu a').live('click',function(event) {
        var link = $(this).attr('href');
        $('#content').fadeOut('slow',function(){
            $('#primary').load(link+' #content',function(){
                $('#content').fadeIn('slow');
            });
        });
        return false;
    });

非常感谢您的帮助。

解决方法

实际上,我可以通过将效果应用到包装器div来实现
$('#primary').fadeOut('slow',function(){
    $('#primary').load(link+' #content',function(){
        $('#primary').fadeIn('slow');
    });
});
原文链接:https://www.f2er.com/jquery/183178.html

猜你在找的jQuery相关文章