gpt4 book ai didi

javascript - jquery animate Complete 函数在动画完成之前执行

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

我想在动画完成后删除 ul 的 li,但是 它使 li 在完成之前删除。请帮我解决这个问题

$('#btnGo').click(function() {

var $ulCust = $('#divCust ul');

$ulCust.find('li:first').animate({
opacity: 0.25,
left: 915
}, 'slow', function() {
//this function executes before animation completes
$('#btnGo').delay(2000).html('Complete'); //this delay is also not working
console.log('complete');
//$(this).delay(100000).remove();

});
})
});

最佳答案

试试这个

$('#btnGo').click(function () {
var $ulCust = $('#divCust ul');
$ulCust.find('li:first').animate({
opacity: 0.25,
left: 915
complete: function () {
$('#btnGo').html('Complete');
}
});
});

关于javascript - jquery animate Complete 函数在动画完成之前执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31469182/

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