如何在加载前添加加载动画

时间:2015-02-03 19:32:52

标签: javascript jquery

我正在尝试点击刷新div。但我有一个问题,我如何在我的代码中添加加载动画。

$('.refresh_div').live("click",function(){
    $('.content').load('present.php');
});

1 个答案:

答案 0 :(得分:3)

您可以在加载内容时添加loading课程:

var d = $('.refresh_div');
d.live("click",function(){
    d.addClass('loading');
    $('.content').load('present.php', function () {
        d.removeClass('loading');
    });
});

然后在CSS中应用所需的样式(例如图标,动画等)。