Home Web Front-end JS Tutorial An in-depth exploration of javascript timers_javascript skills

An in-depth exploration of javascript timers_javascript skills

May 16, 2016 pm 04:22 PM
javascript timer

javascript single thread

JavaScript’s single thread is related to its purpose. As a browser scripting language, JavaScript's main purpose is to interact with users and manipulate the DOM. This determines that it can only be single-threaded, otherwise it will cause very complex synchronization problems. For example, suppose JavaScript has two threads at the same time. One thread adds content to a certain DOM node, and the other thread deletes the node. In this case, which thread should the browser use? Therefore, in order to avoid complexity, JavaScript has been single-threaded since its birth. This has become a core feature of the language and will not change in the future.

Queue tasks

Single thread means that all tasks need to be queued, and the next task will not be executed until the previous task is completed. If the previous task takes a long time, the next task will have to wait.


Asynchronous event-driven

Many behaviors in the browser are asynchronous (Asynchronized), such as: mouse click events, window size drag events, timer trigger events, XMLHttpRequest completion callbacks, etc. When an asynchronous event occurs, it enters the event queue. The browser has a large internal message loop, the Event Loop, that polls a large event queue and processes events. For example, the browser is currently busy processing the onclick event. At this time, another event occurs (such as window onSize). This asynchronous event is put into the event queue to wait for processing. This will only be executed when the previous processing is completed and it is free. event.

Event Loop

JavaScript is single-threaded, but the browser is not single-threaded

The browser will have at least some of the following processes

1. Browser GUI rendering thread

2.JavaScript engine thread

3. Browser scheduled trigger thread

4. Browser event trigger thread

5. Browser http asynchronous request thread

Because the JavaScript engine is single-threaded, the code is first pushed into the queue and then run by the engine in a first-in, first-out manner. Event processing functions and timer execution functions will also be queued in this queue, and then an infinite loop will be used to continuously take out functions from the head of the queue for execution. This is the Event Loop.

To summarize, js is single-threaded, but browsers are multi-threaded. When encountering asynchronous things, the browser puts asynchronous callbacks into the Event Loop. When the js thread is not busy, go to Read Event Loop

Timer principle

Usage of timer

setTimeout(fn, delay)

setInterval(fn, delay)

fn is a function or a string, delay is the delay time, the unit is milliseconds

There are following things to note

1.fn can be a string, but it is never recommended to use it this way

2. If the function in.fn has this, this will point to the window when executed


If you understand js single thread and event loop, the principle of timer is also easy to understand

If a timer is set, when the delay time is reached, the browser will put the delayed execution event into the Event loop. When the time is up, it will be executed if the js thread is idle (so the accuracy of the timer is not accurate)


I read an article introducing the difference between setTimeout and setInterval in polling functions all the time. The code is as follows

Copy code The code is as follows:

setTimeout(function(){
                 setTimeout(arguments.callee,100)                                                                            },100)
setInterval(function(){},1000)

The general meaning of the article is that setTimeout starts the next timer after the callback function is executed, so it must be executed at intervals, while setInterval is always executed. If it encounters a js thread and continues to execute, it may be Add multiple callbacks to the Event loop. When the js thread is not busy, multiple

will be executed at once.

After testing, it was found that no matter under ie, ff, chrome, Opera, Safari, setInterval is set at a certain interval

The test code is as follows

Copy code The code is as follows:

setInterval(function(){
                 xx.innerHTML=xx.innerHTML 1;
},100);
                             
for(var i=0;i<6000000;i ){
               xx.offsetWidth
}

setTimeout(function(){
debugger;
},10)

At the breakpoint, only one 1 was printed

Timer accuracy problem

Because js is single-threaded, if it is busy, the timer will definitely be inaccurate, and it will definitely get longer and longer. There seems to be no solution to this, no solution

Another precision issue is the minimum interval setTimeout(fun,0)

When the js thread is not busy, it cannot be executed immediately after 0 seconds. There is always a minimum interval, and each browser is different. This has not been tested

I read an article that mentioned the w3c standard. The minimum execution time of the timer is 4ms. I can’t find the source and can’t verify it! ! !

Some optimizations related to timers

There can still be some optimizations when making timers

1. For example, if window.onresize is bound, it will be triggered very frequently when the browser is zoomed, so the execution can be delayed, and cleared when the next execution occurs to reduce frequent execution

The pseudo code is as follows

Copy code The code is as follows:

var timer;
Function r(){
          clearTimeout(timer);
        timer = setTimeout(function(){
                      //do something
         },150);                                                 }

2. When the scroll bar is pulled down, there should also be a timer for lazyloading of pictures to avoid excessive calculations

3. When there are multiple places that need timers, they can be combined into one timer. The time interval is based on the smallest one. Then the callback function that needs to be executed is inserted into the array. When the time interval is reached, the array is traversed. Just execute it

A small demo

Copy code The code is as follows:




   
   



   

       
0

       
0

       
0

       
0

   




小伙伴们是否对javascript定时器有所了解了呢,如有疑问给我留言吧。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

What is java timer expression What is java timer expression Dec 27, 2023 pm 05:06 PM

The timer expression is used to define the execution plan of the task. The timer expression is based on the model of "execute a task after a given time interval". The expression usually consists of two parts: an initial delay and a time interval.

See all articles