Jquery - 在隐藏()之后删除()

发布于 2024-09-07 02:55:58 字数 282 浏览 4 评论 0原文

我想使用remove() 删除一个div。我想在删除 div 之前/同时显示动画。我只能在隐藏 div 时显示动画。

如果我想显示动画则执行remove()。这是怎么做到的???

到目前为止的代码:

//Delete Button - delete from cart
$('.ui-icon-trash').live('click',function() {
    $(this).closest('li').hide("puff", {}, 1000)
});

I have a div that I want to remove using remove(). I want to show an animation before/while removal of div. I have only been able to show the animation when hiding the div.

If i want to show the animation then do remove(). How is this done???

Code so far:

//Delete Button - delete from cart
$('.ui-icon-trash').live('click',function() {
    $(this).closest('li').hide("puff", {}, 1000)
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忘羡 2024-09-14 02:55:58

.hide() 的回调函数中执行此操作(jQuery UI .hide() 参考),如下所示:

$('.ui-icon-trash').on('click', function() {
  $(this).closest('li').hide("puff", {}, 1000, function() {
    $(this).remove();
  });
});

end 作为回调运行,在动画完成时执行...所以当你想要时:)

Do it in the callback function for .hide() (jQuery UI .hide() reference), like this:

$('.ui-icon-trash').on('click', function() {
  $(this).closest('li').hide("puff", {}, 1000, function() {
    $(this).remove();
  });
});

The function at the end runs as a callback, executing when the animation is done...so when you want :)

旧城烟雨 2024-09-14 02:55:58

您也可以检查一下:

$(this).hide("puff").delay(10).queue(function(){$(this).remove();});

You might check this also:

$(this).hide("puff").delay(10).queue(function(){$(this).remove();});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文