search
HomeWeb Front-endJS TutorialDetailed explanation of the loading order and execution principle of high-performance JavaScript

The performance of javascript in the browser can be considered the most serious usability problem faced by developers. This article mainly introduces relevant information about the loading order and execution principle of high-performance javascript. The article uses sample code The introduction is very detailed and has certain reference value for everyone's study or work. Friends who need it can follow the editor to learn together.

##When the browser encounters the <script> tag, the browser must first download the external link file and then execute it. During this process, the page is rendered. Interaction with the user is completely blocked. <p>Where is the best place to put the script? <p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/2e61a312d4692d3148ef28a89734effe-1.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/>This situation undoubtedly has serious performance problems, because the script will block the rendering of the page, and the page rendering will not continue until they are all downloaded and executed. The picture below is the execution sequence of the code <p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/2e61a312d4692d3148ef28a89734effe-2.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/><br/>The first js file is downloaded. The second js file will not be executed until the first js file is completely downloaded. , but now IE8, Firefox3.5, Safari4 and Chrome2 all allow parallel downloading of js files. Unfortunately, the js download process will still block the download of other resources, such as: Picture <p> So one of the ways to improve performance : Place the script at the bottom of the body<p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/6cd010162f08654e1984b5aacae9b92b-3.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/><br/>##Organize the script<p><br/>Since each <script> tag will block the page when downloading Rendering, so it is essential to reduce the number of <script> tags contained in the page. Solution: You can merge and package multiple js files into one js file. The advantage of doing this is that it can minimize the delay time and it will be obvious. Improve the overall performance of the page, in addition to reducing HTTP requests. <p><br/> Generally speaking, downloading a single 100KB file is faster than downloading four 25KB files. <p>If there are multiple external link js files, they can be merged into one js file<p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/6cd010162f08654e1984b5aacae9b92b-4.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/><br/>Non-blocking script<p> <br/>Although downloading a single large js file only generates one HTTP request, it will cause the browser to freeze for a long time. In order to avoid this situation, you need to gradually load js files into the page. <p>Delayed script<p><br/>The defer attribute indicates that the script contained in this element can be delayed, but only IE4+ and Firefox3.5+ browsers support it<p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/6cd010162f08654e1984b5aacae9b92b-5.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/><br/>Simply speaking, the mechanism of defer is to download the js file before the DOM is loaded, and will not block other processes of the browser<p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/6cd010162f08654e1984b5aacae9b92b-6.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/><br/>The pop-up order for browsers that do not support the defer attribute is: defer,script,load<p><br/>The pop-up order for browsers that support the defer attribute is: script, defer, load<p><br/>So defer is called before the onload event is executed<p>Dynamic script<p><br/>There are two ways to inject dynamic scripts. The first is to dynamically create scripts. tag, the second is to inject the page through XMLHttpRequest <p><br/> Let’s talk about how to use the first one first: <p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/2d706dbfd8de51e67d08efeda7ddb02c-7.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/>The key point of this technology is: no matter When the download is started, the download and execution process of the file will not block other processes on the page, but when using dynamic script nodes to download js files, the returned code will be executed immediately (except for Firefox and Opera, which will wait for all previous dynamic script nodes to execute Completed)<p>Mainstream browsers will trigger a load event when the <script> tag is received, but the IE browser does not, so we must encapsulate a method that is compatible with all browsers<p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/2d706dbfd8de51e67d08efeda7ddb02c-8.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/><br/>#The disadvantage of this method is that you need to know the loading order of the files. When there are many js files and the dependencies are complex, it is difficult to manage the loading order of dependencies<p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/2d706dbfd8de51e67d08efeda7ddb02c-9.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/>Code written like this is difficult to maintain<p>The second way to dynamically create scripts<p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/054/025/2d706dbfd8de51e67d08efeda7ddb02c-10.png?x-oss-process=image/resize,p_40" class="lazy" alt=""/> is actually equivalent to creating a <script> tag with an inline script. Once the newly created <script> element is added to the page, the code will be executed immediately and then ready. <p>Advantages: The js code is downloaded but not executed immediately. This way you can postpone the execution of the script until you are ready. This method is also compatible with all browsers<p>Disadvantages: js The file must be in the same domain as the requested page. JS files cannot be downloaded from CDN. Generally, large web applications will not use this method. <p> It is recommended to use non-blocking mode: <br/><p>First add the code required for dynamics, and then pretend to initialize the remaining code of the page<br/><p>[Image upload failed...(image-dd3f9-1515902024710)]<p>Introduced above After reading so much, I would like to recommend some dynamic lazy loading libraries to you<br/><p>There are libraries such as YUI3, LazyLoad and LABjs. I personally think that the LABjs library is easier to use, but I have never used it. You can check it out. , the usage method will not be mentioned here. <p>Summary:<br/><p>Several aspects of improving js performance<br/><p> 1. Before closing the tag, <script&gt ; tag at the bottom of the page. This ensures that the page has completed rendering before the script is executed<br/><p> 2. Merge the script. The fewer <script> tags in your page, the faster it will load and respond. This is true regardless of external link files or embedded scripts<br/><p> 3. There are many ways to download js without blocking<br/><p> 3.1 Use the defer attribute of the <script> tag <br/><p>   3.2 Use dynamically created <script> elements to download and execute code<br/><p> 3.3 Use XHR objects to download js code and inject it into the page<p> Through the above strategies, the actual performance of web applications that require a large amount of js can be greatly improved. <p>Related recommendations:<p><a href="http://www.php.cn/css-tutorial-383191.html" target="_self">A brief analysis of CSS loading and loading sequence<p><a href="http://www.php.cn/div-tutorial-358545.html" target="_self">The loading sequence and execution of html, css and js files<p><a href="http://www.php.cn/js-tutorial-21841.html" target="_self">jquery’s $(document).ready() and onload loading sequence_javascript skills</script>

The above is the detailed content of Detailed explanation of the loading order and execution principle of high-performance JavaScript. 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
From Websites to Apps: The Diverse Applications of JavaScriptFrom Websites to Apps: The Diverse Applications of JavaScriptApr 22, 2025 am 12:02 AM

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python vs. JavaScript: Use Cases and Applications ComparedPython vs. JavaScript: Use Cases and Applications ComparedApr 21, 2025 am 12:01 AM

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

The Role of C/C   in JavaScript Interpreters and CompilersThe Role of C/C in JavaScript Interpreters and CompilersApr 20, 2025 am 12:01 AM

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

JavaScript and the Web: Core Functionality and Use CasesJavaScript and the Web: Core Functionality and Use CasesApr 18, 2025 am 12:19 AM

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding the JavaScript Engine: Implementation DetailsUnderstanding the JavaScript Engine: Implementation DetailsApr 17, 2025 am 12:05 AM

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python vs. JavaScript: The Learning Curve and Ease of UsePython vs. JavaScript: The Learning Curve and Ease of UseApr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python vs. JavaScript: Community, Libraries, and ResourcesPython vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

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

Video Face Swap

Video Face Swap

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

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.