gpt4 book ai didi

javascript - 如何在Javascript中等待行的执行?

转载 作者:行者123 更新时间:2023-12-02 20:19:36 24 4
gpt4 key购买 nike

$("#div_id").click(function() {
$(this).effect("shake", { times:3 }, 300);
// Here I want wait that the div_id can complete its shake
alert('hello');
}

.delay 我尝试过,但不起作用。

最佳答案

$(this).effect("shake", { times:3 }, 300, function() {

// this will alert once the animation has completed
alert('hello');
});

关于javascript - 如何在Javascript中等待行的执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5790501/

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