search
HomeWeb Front-endHTML TutorialAsync and defer usage in script tags
Async and defer usage in script tagsOct 18, 2017 am 09:27 AM
asyncdeferscript

The

script tag is used to load scripts and execute scripts. It can be said to be a very important tag in front-end development.
If you use the script script directly, html will load and execute the script in order. During the script loading & execution process, subsequent DOM## will be blocked. #render.

Nowadays, everyone is accustomed to referencing various third-party scripts in the page. If the third-party service provider has some minor problems, such as delay, the page will be blank.

Fortunately,
script provides two ways to solve the above problems, async and defer. These two attributes make script Neither will block the rendering of DOM. But since there will be two attributes, it means that there must be a difference between these two attributes.

defer

If the

script tag sets this attribute, the browser will download the file asynchronously and will not affect the subsequent DOM rendering; If there are multiple
script tags with defer set, all script will be executed in order;
deferThe script will be executed after the document is rendered and before the DOMContentLoaded event is called.

We made a test page, which contains the loading of two

script tags, and adds the defer logo to them.
P.S. In order to be more intuitive, we added a delay of 1s to script1.js and 2s to script2.js Delay.
Async and defer usage in script tagsThe picture below is the page loading process&
scriptThe output sequence of the script. It is not difficult to see that although the loading time of
script1 is shorter than that of script2, due to the limitation of defer, it can only wait for the previous script to be executed. can only be executed later. The setting of
Async and defer usage in script tags
Async and defer usage in script tags##async

async

will make the script script asynchronous Loading and executing async
when allowed will not be executed in the order of script on the page, but whoever loads it first will execute it.

We modified the test page as follows:


We got the following results. There is no change in the page loading time. After all, they are all asynchronously loaded scripts. Async and defer usage in script tagsBut we can see a small detail. The triggering of the

DOMContentLoaded event is not affected by the asyncscript loading. Before the script is loaded, DOMContentLoaded has been triggered.
Async and defer usage in script tags
Async and defer usage in script tags
Async and defer usage in script tags

We then modify the test page. Load a script script without delay so that the script can be loaded immediately.
We want to test if the async script loads quickly enough, whether it will be executed before DOMContentLoaded (This experiment is based on async's description of the "execution if allowed" argument ).
At the same time, in order to ensure the stability of the test, we added thousands of empty p nodes after the introduction of the script script to extend the rendering time of the document.
Async and defer usage in script tags
The execution result is as expected. If async is given a certain amount of time, it is possible to execute it before the DOMContentLoaded event.
Async and defer usage in script tags
P.S. From the flame graph in the upper left corner of the picture above, we can also see that there are multiple segments of blue (Update: I was confused when I wrote it at night, purple The one is rendering, the blue one is parsing) document rendering. And the order of Console below.
Explanation Indeed, the execution of async is executed after loading is completed, unlike defer which has to wait for all scripts to be loaded and executed in order.

Draw a few pictures and briefly explain

There are many similar pictures on the Internet, but they are basically just examples using a script
It is too shabby. So let’s get a deluxe version and draw a Gantt chart when loading multiple scripts
Just like the major mobile phone manufacturers in recent years, they all like to have an X+X plus when they release new phones

Use four different colors to indicate the meaning of each
Async and defer usage in script tags

Normal script

During the document parsing process, if you encounter a script script , it will stop the rendering of the page and download it (but it will not affect the subsequent parsing, parsing and rendering are two different things).
The download of resources is carried out during the parsing process. Although the script1 script will be loaded quickly, the script2 in front of it is not loaded & executed, so it only It can be in a suspended state, waiting for script2 to finish executing before executing it.
When both scripts are executed, the page will continue to be rendered.
Async and defer usage in script tags

defer

When parsing the document, if a script with defer is encountered, it will be downloaded in the background, but the document will not be blocked. Rendering, when the page parsing & rendering is completed.
It will wait until all defer scripts are loaded and executed in order. After the execution is completed, the DOMContentLoaded event will be triggered.
Async and defer usage in script tags

async

asyncThe script will be executed after loading.
asyncThe loading of the script is not included in the DOMContentLoaded event statistics, which means that both situations in the figure below are possible

Async and defer usage in script tags
Async and defer usage in script tags

defer

If your script code depends on the DOM element in the page (whether the document is rendered Completed), or depended on by other script files.
Example:

  1. Comment box

  2. Code syntax highlighting

  3. polyfill.js

async

If your script doesn’t care about the DOM elements in the page ( Whether the document has been rendered), and no data required by other scripts will be generated

The above is the detailed content of Async and defer usage in script tags. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
async是es6还是es7的async是es6还是es7的Jan 29, 2023 pm 05:36 PM

async是es7的。async和await是ES7中新增内容,是对于异步操作的解决方案;async/await可以说是co模块和生成器函数的语法糖,用更加清晰的语义解决js异步代码。async顾名思义是“异步”的意思,async用于声明一个函数是异步的;async和await有一个严格规定,两者都离不开对方,且await只能写在async函数中。

script的意思是什么script的意思是什么Aug 29, 2023 pm 02:00 PM

script是指剧本或脚本的意思。在电影、电视、戏剧等艺术形式中,script用于描述角色的对话、动作和场景,以及故事的发展和结构。script的编写需要一定的技巧和经验,而且应该生动、有力,能够吸引观众的注意力,并传达出故事的情感和主题。script在电影和电视行业中尤为重要,是创作的基础,决定了电影的故事情节、角色发展和对话内容。script是艺术家们创作和表达的重要工具。

vue3+async-validator如何实现表单验证vue3+async-validator如何实现表单验证May 11, 2023 am 09:55 AM

搭建vue3的项目创建项目前这里我们首先要说明的是,我们使用的版本情况Nodejs:v17.5.0pnpm:7.0.0Vue:3.2.25首先我们Vite创建一个vue3的项目demo,名字就叫FormValidate,我们在命令行输入命令pnpmcreateviteFormValidate回车然后选择vue继续回车,说明我们已经初步创建了FormValidate(表单验证)项目根据命令行的提示,我们进入项目根目录,然后使用命令pnpminstall安装项目需要的依赖,当然这里使用pnpm是比n

script是什么script是什么Oct 12, 2023 am 10:04 AM

计算机科学领域中,"script"通常表示一种脚本语言或脚本文件,脚本语言是一种解释性编程语言,通常用于自动化、批处理和快速原型开发等任务。

Go 语言中的 defer 关键字是什么?Go 语言中的 defer 关键字是什么?Jun 11, 2023 am 09:10 AM

Go语言中的defer关键字是什么?在编写程序时,我们经常需要在某个函数或方法执行完毕后,执行一些清理或资源释放工作。这个时候,Go语言提供了一种方便的机制,通过使用defer关键字,可以将这些清理或资源释放工作推迟到函数或方法返回之前执行。defer关键字是一个编译时解析的语法糖,它通过将一个函数或方法的调用推迟到当前函数或方法返回之前执行,

scripterror怎么解决scripterror怎么解决Oct 18, 2023 am 09:44 AM

scripterror的解决办法有检查语法、文件路径、检查网络连接、浏览器兼容性、使用try-catch语句、使用开发者工具进行调试、更新浏览器和JavaScript库或寻求专业帮助等。详细介绍:1、检查语法错误:Script Error可能是由于JavaScript代码中存在语法错误导致的,使用开发者工具来检查代码并修复语法错误,确保代码中的括号、引号、分号等都是正确的等等。

Python async模块如何使用Python async模块如何使用May 30, 2023 pm 11:43 PM

协程:协程(Coroutine),也可以被称为微线程,是一种用户态内的上下文切换技术。简而言之,其实就是通过一个线程实现代码块相互切换执行Python对协程的支持是通过generator实现的。在generator中,我们不但可以通过for循环来迭代,还可以不断调用next()函数获取由yield语句返回的下一个值。但是Python的yield不但可以返回一个值,它还可以接收调用者发出的参数。一、什么是generator(生成器)在Python中,这种一边循环一边计算的机制,称为生成器:gene

Python 中的协程,到底是怎么回事?Python 中的协程,到底是怎么回事?Apr 14, 2023 am 08:28 AM

一.传统的Sync语法请求例子还是一样, 在了解Async语法的实现之前, 先从一个Sync的语法例子开始, 现在假设有一个HTTP请求, 这个程序会通过这个请求获取对应的响应内容, 并打印出来, 代码如下:import socket def request(host: str) -> None: """模拟请求并打印响应体""" url: str = f"http://{host}" sock

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!