function sleep(d){
  for(var t = Date.now();Date.now() - t <= d;);
}
 
sleep(5000); //当前方法暂停5秒

 

相关文章: