Home  >  Article  >  Web Front-end  >  JavaScript custom wait function example analysis_javascript skills

JavaScript custom wait function example analysis_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:07:592410browse

The example in this article describes the usage of JavaScript custom wait function. Share it with everyone for your reference. The specific analysis is as follows:

The following is a js-customized wait function that can pause the execution of the program

function sleep(delay)
{
  var start = new Date().getTime();
  while (new Date().getTime() < start + delay);
}
//usage
//wait for 3 seconds
sleep(3000);

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn