javascript中实现sleep函数

function sleep(d){
for(var t = Date.now();Date.now() - t <= d;);
}

posted @ 2017-09-19 16:41  jiftle  阅读(389)  评论(0编辑  收藏  举报