1.setInterval()Calls the function at a specified interval (in milliseconds). The method will keep calling the function until grammar: setInterval(code,millisec,[arg1, arg2, ...])
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 Finally, some knowledge: JS objects can be obtained in two ways: one is customized by the developer; the other is provided by The timer is provided by 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:
|
<<: Solution to PHP not being able to be parsed after nginx installation is complete
Table of contents JS function call, apply and bin...
Introduction: The configuration of Docker running...
This article example shares the specific code of ...
Preface In WEB development, we often involve cros...
1 Check whether the kernel has a tun module modin...
Table of contents Preface 1. What is scalability?...
When you first start using Docker, you will inevi...
On mobile devices, flex layout is very useful. It...
I have been studying the source code of Vue recen...
Table of contents Prefab How to create a prefab T...
This article mainly introduces the breadcrumb fun...
The <script> tag In HTML5, script has the f...
Table of contents 1. Map method 2. Application ba...
After half an hour of trying to pull the MySQL im...
Table of contents Generate random numbers Generat...