gpt4 book ai didi

jquery 不会等待 animate 完成后再删除,为什么?

转载 作者:行者123 更新时间:2023-12-03 22:57:13 25 4
gpt4 key购买 nike

我正在做一些简单的事情,而不仅仅是做:

$(this).next().remove();

我希望它有更多的耀斑,并想添加动画功能

$(this).next().slideUp().remove();

在删除项目之前,它将向上滑动以隐藏该项目。在使用 Chrome 进行测试时,它几乎只是删除了这些项目,并没有实现我期望的平滑过渡。

在没有删除的情况下进行测试,可以正确使用 SlideUp() 的项目。

我有什么遗漏吗?

最佳答案

尝试使用 slideUp()的回调函数方法。

$(this).next().slideUp(function() {
// remove the element after
// animation finished
$(this).remove();
});

关于jquery 不会等待 animate 完成后再删除,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11508004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com