When using setinterval, it is found that it will be executed after a delay of one second when the page is just opened. Because the setinterval timer executes its own one second first, and then operates on the content inside, it will not be displayed immediately. For example: first create a div box, then write the script code var div = document.querySelector('div'); var num = 10; setInterval(function(){ if(num==1){ div.innerHTML = null; return fn1; }else{ num--; div.innerHTML = 'Remaining' + num + 'seconds'; } },1000); The effect is as shown below: It will execute for that second first, wait for one second and then execute the content displayed in it Solution: Direct call var div = document.querySelector('div'); var num = 11; function fn1(){ if(num==1){ div.innerHTML = null; return fn1; }else{ num--; div.innerHTML = 'Remaining' + num + 'seconds'; } } setInterval(fn1,1000); fn1(); This is the end of this article about the solution to the one-second delay of JavaScript setinterval. For more information about the solution to the one-second delay of JavaScript setinterval, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Basic statements of MySQL data definition language DDL
>>: Tomcat maxPostSize setting implementation process analysis
MongoDB Installation Choose to install using Yum ...
Docker view process, memory, cup consumption Star...
Table of contents 1 Java environment configuratio...
1.MySQL functions 1. Mathematical functions PI() ...
This article describes how to boot the Linux syst...
Today I will introduce how to enable the Linux su...
Table of contents 1. setTimeout() timer 2. Stop t...
With the right settings, you can force Linux user...
The full name of Blog should be Web log, which me...
Nowadays, whether you are on the sofa at home or ...
Table of contents 1. JS Object DOM –1, Function –...
Because the project needs to use https service, I...
This article shares the specific code of Bootstra...
Today, this post lists some great examples of circ...
Centos7 uses yum to install MySQL and how to achi...