gpt4 book ai didi

jQuery的removeClass()回调函数

转载 作者:行者123 更新时间:2023-12-01 06:21:12 24 4
gpt4 key购买 nike

jQuery 中是否可以为removeClass() 函数提供回调函数?我有以下代码:

var pane = $(this).attr("rel");
var current = $('.active-pane');

current.fadeOut("slow").removeClass('active-pane');
$("#pane-"+pane).addClass('active-pane');

所以基本上我希望当前淡出,然后删除事件 Pane 类,然后一旦发生这种情况,将事件 Pane 类添加到新元素。目前这些事件同时发生。

最佳答案

.fadeout 方法有一个回调。

current.fadeOut("slow", function() {
current.removeClass('active-pane');
$("#pane-"+pane).addClass('active-pane');
});

关于jQuery的removeClass()回调函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4243729/

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