gpt4 book ai didi

javascript - 从 Timeout 内部退出函数

转载 作者:行者123 更新时间:2023-12-03 06:17:47 27 4
gpt4 key购买 nike

问题是我在另一个函数中有一个 setTimeout 函数:

function checkBrowser() {
setTimeout(function() {
if(some.condition) //exit function checkBrowser() here
},5000);
setTimeout(/*something that mustn't run if some.condition is true*/,5000);

}

我需要从 setTimeout 中退出第一个函数。帮助。

最佳答案

你不能。该代码是异步的。

在调用您传递给 setTimeout 的函数之前,第一个函数将完成运行并退出。

关于javascript - 从 Timeout 内部退出函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39014571/

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