JavaScript setinterval delay one second solution

JavaScript setinterval delay one second solution

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:
  • Common array operations in JavaScript
  • A simple and in-depth study of async and await in JavaScript
  • JavaScript implementation of classic snake game
  • Javascript basics about built-in objects
  • Detailed explanation of JavaScript operation mechanism and a brief discussion on Event Loop
  • Comparison between Python coroutines and JavaScript coroutines
  • JavaScript to achieve mouse tailing effect
  • JavaScript to achieve simple drag effect
  • Detailed explanation of JavaScript array deduplication
  • JavaScript to implement the aircraft war game
  • Detailed explanation of JavaScript upload file limit parameter case
  • A brief talk about JavaScript variable promotion
  • In-depth understanding of JavaScript event execution mechanism
  • 8 essential JavaScript code snippets for your project

<<:  Basic statements of MySQL data definition language DDL

>>:  Tomcat maxPostSize setting implementation process analysis

Recommend

Installation and configuration tutorial of MongoDB under Linux

MongoDB Installation Choose to install using Yum ...

Docker View Process, Memory, and Cup Consumption

Docker view process, memory, cup consumption Star...

Detailed tutorial on Tomcat installation and deployment in Windows 10

Table of contents 1 Java environment configuratio...

Software Testing - MySQL (VI: Database Functions)

1.MySQL functions 1. Mathematical functions PI() ...

Analysis of Linux boot system methods

This article describes how to boot the Linux syst...

Detailed explanation of the JavaScript timer principle

Table of contents 1. setTimeout() timer 2. Stop t...

How to view and configure password expiration on Linux

With the right settings, you can force Linux user...

Write a formal blog using XHTML CSS

The full name of Blog should be Web log, which me...

Linux uses NetworkManager to randomly generate your MAC address

Nowadays, whether you are on the sofa at home or ...

JavaScript and JQuery Framework Basics Tutorial

Table of contents 1. JS Object DOM –1, Function –...

Alibaba Cloud applies for a free SSL certificate (https) from Cloud Shield

Because the project needs to use https service, I...

Bootstrap realizes the effect of carousel

This article shares the specific code of Bootstra...

25 Examples of Using Circular Elements in Web Design

Today, this post lists some great examples of circ...

How to install MySQL using yum on Centos7 and achieve remote connection

Centos7 uses yum to install MySQL and how to achi...