Home > Web Front-end > JS Tutorial > body text

JavaScript custom wait function example analysis_javascript skills

WBOY
Release: 2016-05-16 16:07:59
Original
2409 people have browsed it

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);
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template