其他分享
首页 > 其他分享> > js方法执行中休眠几秒

js方法执行中休眠几秒

作者:互联网

通过循环消耗cpu

    function sleep(n) {

    var start = new Date().getTime();

    while(true)  if(new Date().getTime()-start > n) break;

    }

 

n为毫秒

标签:function,break,start,getTime,js,几秒,休眠,Date,new
来源: https://www.cnblogs.com/T8888/p/16082675.html