Home >Web Front-end >JS Tutorial >A brief analysis of interval calls and delayed calls in JavaScript_Basic knowledge

A brief analysis of interval calls and delayed calls in JavaScript_Basic knowledge

WBOY
WBOYOriginal
2016-05-16 16:31:221468browse

Using the setInterval method, you can call the function in a loop at a specified interval until the clearInterval method cancels the loop

When using the clearInterval method to cancel a loop, the call to the setInterval method must be assigned to a variable, and then the clearInterval method refers to the variable.

Copy code The code is as follows:



Use setTimeout and clearTimeout to complete the delay call, run the specified function after the specified delay time, and execute it only once. The usage of clearTimeout is the same as the usage of clearInterval method.

Copy code The code is as follows:






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