gpt4 book ai didi

javascript - 如何按顺序运行javascript语句

转载 作者:行者123 更新时间:2023-11-30 10:38:51 25 4
gpt4 key购买 nike

我想先显示一条消息,然后重定向我的页面:

toastr.success('Your report has been submitted successfully.');
window.location = '/Report';

但是上面的代码允许两个语句同时运行。结果,重定向发生在 toastr 消息显示之前,这需要时间..

对于这种情况,我们是否有类似 $.when(...).done(...) 的东西?

---更新---

以防有人不知道toastr , 它是一个在网页上显示消息的库。

当然设置一个定时器就可以了。但是有什么优雅的方法可以在第一个语句完成后运行第二个语句吗?

最佳答案

你可以使用 setTimeout :

toastr.success('Your report has been submitted successfully.');
setTimeout(function(){window.location = '/Report';}, 2000);

关于javascript - 如何按顺序运行javascript语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12391177/

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