Home > Web Front-end > JS Tutorial > body text

Use the async attribute to asynchronously load and execute JavaScript methods

coldplay.xixi
Release: 2020-06-17 16:17:08
forward
2789 people have browsed it

Use the async attribute to asynchronously load and execute JavaScript methods

One of the biggest reasons why I am excited about HTML5 is that the new functions and features implemented in it are all that we have been looking forward to for a long time. For example, I've been using placeholders before, but I had to implement them in JavaScript. The async attribute provided for JavaScript tags in HTML5 enables JavaScript to be loaded and executed asynchronously. Previously I needed various JavaScript plugins to achieve this functionality, but now this new attribute allows us to easily implement asynchronous loading.

async – HTML code

It’s really simple, just like this:

<script async src="siteScript.js" onload="myInit()"></script>
Copy after login

In fact, if you are a rigorous programmer, you should More than 90% of SCRIPT tags use the async attribute.

defer – HTML code

There is also a defer attribute similar to the async attribute:

<script defer src="siteScript.js" onload="myInit()"></script>
Copy after login

and The syntax of the async attribute is very similar.

async & defer – the difference

This WebKit blog explains the differences between defer and async very clearly:

The browser will immediately load and parse scripts marked with the async attribute or the defer attribute, and will also support initialization that relies on this script. onload event. The difference between the async attribute and the defer attribute is when the script is executed. Scripts marked with the async attribute will be executed after the download is completed, without waiting for the window's load event. This means that scripts marked with the async attribute will not necessarily be executed in the order they are embedded in the page. Scripts marked with the defer attribute will be executed in the order they appear on the page. Execution will start after parsing is completely completed, but before the document's DOMContentLoaded event.

What browsers support async and defer attributes?

Quote from the Safari blog:

WebKit engine browsers (Google Chrome and Safari). Firefox supports the async and defer attributes starting with version 3.6. IE has also supported the defer attribute for a long time, but does not support the async attribute. The onload attribute is supported in IE9.

async is so useful!

It makes me very happy to see various browsers implement the async function. It is indeed a big problem to be stuck by JavaScript when browsing the website page. The asynchronous loading and execution capabilities of the async attribute will definitely increase the page speed of the website.

Recommended tutorial: "javascript basic tutorial"

The above is the detailed content of Use the async attribute to asynchronously load and execute JavaScript methods. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:webhek.com
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!