The code _javascript skill of JavaScript to implement sleep function

Source: Internet
Author: User
Tags sleep function

However, the two functions are asynchronous, and the code behind them will continue to execute during the timing. Then write your own sleep () function, the Internet also spread some implementation methods, but I found the following method is simple and practical, so here to share with you:

Copy Code code as follows:

Console.log (' Start ... ');
Console.log (' Now time: ' + Date (/\d{10,10}/.exec (Date.now ()));
function Sleep (sleeptime) {
for (var start = Date.now (); Date.now ()-Start <= sleeptime; ) { }
}
Sleep (5000); Sleep 5 Seconds
Console.log (' End ... ');
Console.log (' End time: ' + Date (/\d{10,10}/.exec (Date.now ()));

It's a good idea to use this function if everyone's program has a less precise sleep () function.

The following is more complicated, the need for friends can also refer to:

Copy Code code as follows:

function Sleep (Obj,iminsecond)
{
if (window.eventlist==null)
Window.eventlist=new Array ();
var ind=-1;
for (Var i=0;i<window.eventlist.length;i++)
{
if (window.eventlist[i]==null)
{
Window.eventlist[i]=obj;
Ind=i;
Break
}
}
if (ind==-1)
{
Ind=window.eventlist.length;
Window.eventlist[ind]=obj;
}
SetTimeout ("GoOn (" + ind + ")", Iminsecond);
}
function GoOn (IND)
{
var obj=window.eventlist[ind];
Window.eventlist[ind]=null;
if (obj. NextStep) obj. NextStep ();
else obj ();
}
function Test ()
{
Alert ("Sleep");
Sleep (this,100);
This. Nextstep=function ()
{
Alert ("Continue");
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.