如何在Javascript中编写阻塞同步方法?

前端之家收集整理的这篇文章主要介绍了如何在Javascript中编写阻塞同步方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图嘲笑一种方法,这种方法需要很长时间才能用于测试,但是无法在 Javascript中找到一种很好的方法.除了写一个很长的for循环之外还有什么好的方法

解决方法

a loop that checks time怎么样?
function sleep(milliSeconds){
    var startTime = new Date().getTime();                    // get the current time
    while (new Date().getTime() < startTime + milliSeconds); // hog cpu until time's up
}
原文链接:https://www.f2er.com/js/159120.html

猜你在找的JavaScript相关文章