我正在尝试点击刷新div。但我有一个问题,我如何在我的代码中添加加载动画。
$('.refresh_div').live("click",function(){
$('.content').load('present.php');
});
答案 0 :(得分:3)
您可以在加载内容时添加loading
课程:
var d = $('.refresh_div');
d.live("click",function(){
d.addClass('loading');
$('.content').load('present.php', function () {
d.removeClass('loading');
});
});
然后在CSS中应用所需的样式(例如图标,动画等)。