1. Brief Introduction In There are four timer method related methods:
2. setInterval2.1 Description let timerId = setInterval(func|code, delay, arg1, arg2, ...) 2.2 Parameters
2.3 Return Value The return value 2.4 UsageThis is an example of clicking a button and incrementing a number every second; <p id="showNum"></p> <button onclick="timer()">Click me to increase the number by one every second</button> <script> const showNum = document.getElementById("showNum"); let timerId; // Timer ID let num = 0; function timer() { timerId = setInterval(addNum, 1000); } function addNum() { showNum.innerText = `${num++}`; } // No code to stop the timer is written</script> 3. setTimeout3.1 Description let timerId = setTimeout(func|code, delay, arg1, arg2, ...) 3.2 Parameters The parameters of
3.3 Usage The usage of However, unlike <p id="showNum"></p> <button onclick="timer()">After clicking, wait for one second and the number increases by one</button> <script> const showNum = document.getElementById("showNum"); let timerId; let num = 0; addNum(); function timer() { timerId = setTimeout(addNum, 1000); } function addNum() { showNum.innerText = `${num++}`; } </script> 4. Cancel the timer The usage is very simple, with only one parameter, which is clearInterval(intervalID); clearTimeout(timeoutID);
Usage is simple: function timer() { timerId = setTimeout(addNum, 1000); } clearTimeout(timerId); // When the code runs to this line, the timer set by timer will be canceled. 5. Use timers in the consoleYou can also use timers in the browser console console.time(timerName) Create a timer named name and start it.
console.timeEnd(timerName) Calling console.time(timerName); console.timeEnd(timerName); 5.1 Usage For loop 99999 times how much time example: console.time(name); let num; for (let index = 0; index < 99999; index++) { num++; } console.timeEnd(name); This is the end of this article about the details of JavaScript timer. For more relevant JavaScript timer content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Why Google and Facebook don't use Docker
>>: Interpreting MySQL client and server protocols
Obvious HTML, hidden "public script" Th...
Table of contents 1. Connect to Tencent Cloud Ser...
This article describes the sql_mode mode in MySQL...
Enter the mysql command: mysql -u+(user name) -p+...
Table of contents Preface The relationship betwee...
Find the problem Recently, I found a problem at w...
1. As mentioned above I saw this macro when I was...
Table of contents Preface Basic Introduction Code...
Web Services are concerned with application-to-ap...
I am almost going moldy staying at home due to th...
When we want to add a shadow to a rectangle or ot...
Table of contents Linux-Use MyCat to implement My...
This article shares the specific code of JavaScri...
The effect to be achieved In many cases, we will ...
Portainer is a lightweight docker environment man...