7

我正在一个对象上做一个简单的 slideUp 动画。我想在动画完成后向元素添加属性标签。我怎样才能让它工作?

if($(this).is(':visible')) {
  if(config.animate=='true')                    
    $(this).slideUp(options.animationTime);   //After animation ends do $(this).attr('shown','true');
  else 
    $(this).hide();             
}
4

1 回答 1

12
$(this).slideUp(options.animationTime, function() {
    $(this).attr('shown','true');
}); 
于 2012-04-06T06:37:37.693 回答