gpt4 book ai didi

javascript - 在 JavaScript 函数中引入延迟

转载 作者:行者123 更新时间:2023-12-02 18:09:53 24 4
gpt4 key购买 nike

<script>
function sleep(milliseconds) {
var start = new Date().getTime();
for (var i = 0; i < 1e7; i++) {
if ((new Date().getTime() - start) > milliseconds){
break;
}
}
}

function customFunc(argument)
{
sleep(1000);
console.log("Inside third party custom function for event = " + argument.event);
}

var aO = {
tt:{
cf : customFunc
}};
</script>

我在 Javascript 中编写了一个自定义 sleep 函数,该函数将 sleep 作为 sleep 函数参数的毫秒数,并且我在 customFunc 中调用了它,我想在其中创建延迟。这是正确的方法还是有任何方法其他方式我可以做得更好。

最佳答案

关于javascript - 在 JavaScript 函数中引入延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19794525/

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