Summary of JavaScript Timer Types

Summary of JavaScript Timer Types

1.setInterval()

Calls the function at a specified interval (in milliseconds).

The method will keep calling the function until clearInterval() is called or the window is closed.

grammar:

setInterval(code,millisec,[arg1, arg2, ...])

parameter describe
code Required. The code string to execute.
millisec must. The time interval in milliseconds.
arg1, arg2, … Optional. When the timer expires, additional parameters will be passed to the function specified by func

2.setTimeout()

Calls a function after the specified number of milliseconds.

grammar:

setTimeout(code,millisec,[arg1, arg2, ...]); //parameters have the same function as above

Final code demonstration:

//1. You can write setTimeout directly using arrow function(()=>{
 this.isSkeleton=false;
  },2000)
 
//2. You can return a value and then call clearTimeout() to cancel the timer;
let a = setTimeout(()=>{
  alert('popup');
  },5000);
function b() {
  window.clearTimeout(a); // Pop-up window appears after 5 seconds, calling b function can directly cancel the pop-up.}

Return value:

The return value intervalID is a non-zero value used to identify the timer created by setInterval() . This value can be used as a parameter of clearInterval() to clear the corresponding timer. Note that setInterval() and setTimeout() share the same ID pool, so avoid mixing them.

Finally, some knowledge:

JS objects can be obtained in two ways: one is customized by the developer; the other is provided by ECMAScript . The objects provided by ECMAScript are called JavaScript built-in objects.

The timer is provided by window object, and window call can also be added before the timer.

This is the end of this article about the summary of JavaScript timer types. For more information about JavaScript timer types, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the JavaScript timer principle
  • Detailed explanation of JavaScript timers
  • JavaScript Timer Details
  • JavaScript timer to achieve limited time flash sale function
  • JavaScript timer to achieve seamless scrolling of pictures

<<:  Solution to PHP not being able to be parsed after nginx installation is complete

>>:  How to solve the problem of not getting form value after submitting html form input using disabled

Recommend

JS function call, apply and bind super detailed method

Table of contents JS function call, apply and bin...

Detailed steps for running springboot project in Linux Docker

Introduction: The configuration of Docker running...

Mini Program to Implement Sieve Lottery

This article example shares the specific code of ...

Basic principles of MySQL scalable design

Table of contents Preface 1. What is scalability?...

Solve the error during connect exception in Docker

When you first start using Docker, you will inevi...

Several ways to pass data from parent components to child components in Vue

I have been studying the source code of Vue recen...

Detailed explanation of cocoscreater prefab

Table of contents Prefab How to create a prefab T...

Realize breadcrumb function based on vue-router's matched

This article mainly introduces the breadcrumb fun...

Using JavaScript in HTML

The <script> tag In HTML5, script has the f...

Application of mapState idea in vuex

Table of contents 1. Map method 2. Application ba...

Solve the problem that Docker pulls MySQL image too slowly

After half an hour of trying to pull the MySQL im...