我正在使用以下函数来为幻灯片设置动画,就像slideUp()
or slideDown()
:
(function($) {
jQuery.fn.slideLeftHide = function(speed, callback) {
this.animate({
width: "hide",
paddingLeft: "hide",
paddingRight: "hide",
marginLeft: "hide",
marginRight: "hide"
}, speed, callback);
}
jQuery.fn.slideLeftShow = function(speed, callback) {
this.animate({
width: "show",
paddingLeft: "show",
paddingRight: "show",
marginLeft: "show",
marginRight: "show"
}, speed, callback);
}
})(jQuery);
问题是,我只想在动画结束后调用一次函数。我尝试这样做:
$(".item").slideLeftHide(function() {
$(this).remove();
}).done(function() {
$(".tab").each(function() {
$(this).attr('data-status', 'success');
});
});
当我执行此代码时,我收到一条错误消息说Cannot read property 'done' of undefined
. 相同的情况发生在.then()
而不是.done()
。
我该如何解决这个问题?
谢谢!