gpt4 book ai didi

jquery fadeOut Complete 出现错误 : fadeOut(. ..).complete 不是函数

转载 作者:行者123 更新时间:2023-12-01 07:46:51 26 4
gpt4 key购买 nike

我正在尝试这个:

var notifications = $( "#notifications" );
notifications.fadeOut("slow")
.complete(function () {
alert('completed');
});

但是我得到:未捕获的类型错误:notifications.fadeOut(...).complete不是一个函数

引用:http://api.jquery.com/fadeout/

最佳答案

有两种方法可以指定 on-complete-callback:

通过第二个参数:

var notifications = $( "#notifications" );
notifications.fadeOut("slow", function () {
alert('completed');
});

或通过选项:

var notifications = $( "#notifications" );
notifications.fadeOut({
duration: "slow",
complete: function () {
alert('completed');
}
});

关于jquery fadeOut Complete 出现错误 : fadeOut(. ..).complete 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36160582/

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