


Summary of several ways to make the browser load javascript non-blockingly_javascript skills
In order to ensure that the script is executed correctly and the layout is rendered, the browser will completely block the rendering of subsequent content of the page and the loading of other resources until the browser has loaded and executed it.
If the content can be gradually presented during the loading process of the page, it is very important for a good user experience. Usually we also do something in the onload event processing function of the wondow object. However, due to the characteristics of script blocking loading and rendering, on the one hand, it increases the page loading time and delays the triggering of the onload event. On the other hand, it also delays the time the user requests. Looking forward to feedback. This requires us to use some methods to allow the browser to load external scripts in a non-blocking manner.
1 Use the XMLHttpRequest object to load external scripts asynchronously.
The advantage of this method is that it triggers fewer browser busy indicators and can be supported by all modern browsers. The disadvantage is that due to the browser's cross-domain security mechanism, it can only allow external scripts in the same domain to be loaded. In addition, if there are dependencies between multiple scripts, you need to write related queue management scripts to control the execution order of multiple scripts.
2 Use Javascript to dynamically create SCRIPT elements for external scripts
I think this method is the best solution for cross-domain parallel loading of external scripts. The implementation method is to use Javascript to dynamically create the srcript element required to reference external scripts in HTML and give the src attribute of the created srcript element. Set the URL of the corresponding external script to load in parallel with other resources.
Four. Use iframe to load external scripts
In this way we need to use a new HTML page to convert the external script into an inline script to the HTML page, and then use an iframe to load the HTML page containing the script in the main page. Using this method requires refactoring part of the code. To access the DOM elements in the main page. Moreover, IFRAM is a relatively expensive DOM element and also has cross-domain restrictions.
5 Using the derfer attribute of the Script tag
This method is the simplest way to implement non-blocking parallel loading of external scripts. You only need to apply the defer attribute to the SCRIPT tag in the conventional way of referencing external scripts. However, the disadvantage of loading external scripts in this way is that it only implements parallel loading in some browsers and therefore lacks compatibility.
Six document.write script tag
This method is relatively simple to implement, which is to directly use the document.write method of javascript to output the string of the script tag that references the external script in HTML. The shortcomings are the same lack of compatibility as method five.
Summary
The above methods need to be based on specific needs, such as whether they need to cross domains? Do I need to ensure that my scripts are executed in order? Do you need to trigger the busy indicator for more or fewer browsers? As well as compatibility, the amount of code supported will be determined to comprehensively consider which method is suitable.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics
![Error loading plugin in Illustrator [Fixed]](https://img.php.cn/upload/article/000/465/014/170831522770626.jpg?x-oss-process=image/resize,m_fill,h_207,w_330)
When launching Adobe Illustrator, does a message about an error loading the plug-in pop up? Some Illustrator users have encountered this error when opening the application. The message is followed by a list of problematic plugins. This error message indicates that there is a problem with the installed plug-in, but it may also be caused by other reasons such as a damaged Visual C++ DLL file or a damaged preference file. If you encounter this error, we will guide you in this article to fix the problem, so continue reading below. Error loading plug-in in Illustrator If you receive an "Error loading plug-in" error message when trying to launch Adobe Illustrator, you can use the following: As an administrator

Subtitles not working on Stremio on your Windows PC? Some Stremio users reported that subtitles were not displayed in the videos. Many users reported encountering an error message that said "Error loading subtitles." Here is the full error message that appears with this error: An error occurred while loading subtitles Failed to load subtitles: This could be a problem with the plugin you are using or your network. As the error message says, it could be your internet connection that is causing the error. So please check your network connection and make sure your internet is working properly. Apart from this, there could be other reasons behind this error, including conflicting subtitles add-on, unsupported subtitles for specific video content, and outdated Stremio app. like

With the development of the Internet, more and more web pages need to support scrolling loading, and infinite scrolling loading is one of them. It allows the page to continuously load new content, allowing users to browse the web more smoothly. In this article, we will introduce how to implement infinite scroll loading using PHP. 1. What is infinite scroll loading? Infinite scroll loading is a method of loading web content based on scroll bars. Its principle is that when the user scrolls to the bottom of the page, background data is asynchronously retrieved through AJAX to continuously load new content. This kind of loading method

If you encounter freezing issues when inserting hyperlinks into Outlook, it may be due to unstable network connections, old Outlook versions, interference from antivirus software, or add-in conflicts. These factors may cause Outlook to fail to handle hyperlink operations properly. Fix Outlook freezes when inserting hyperlinks Use the following fixes to fix Outlook freezes when inserting hyperlinks: Check installed add-ins Update Outlook Temporarily disable your antivirus software and then try creating a new user profile Fix Office apps Program Uninstall and reinstall Office Let’s get started. 1] Check the installed add-ins. It may be that an add-in installed in Outlook is causing the problem.

The solutions to the problem that CSS cannot be loaded include checking the file path, checking the file content, clearing the browser cache, checking the server settings, using developer tools and checking the network connection. Detailed introduction: 1. Check the file path. First, please make sure the path of the CSS file is correct. If the CSS file is located in a different part or subdirectory of the website, you need to provide the correct path. If the CSS file is located in the root directory, the path should be direct. ; 2. Check the file content. If the path is correct, the problem may lie in the CSS file itself. Open the CSS file to check, etc.

When installing the win7 system, some netizens encountered a situation where loading the USB driver failed. The USB device could not be recognized in the new win7 system, and common USB flash drives, mice and other devices could not be used. So what should I do if the installation of win7 fails to load the USB driver? Let Xiaobai teach you how to solve the problem of failure to load the USB driver when installing win7. Method 1: 1. First, we turn on the computer and enter the computer system, and check the computer system version in the computer system. Confirm whether the version of the computer system is consistent with the version of the device driver. 2. After confirming the driver version, connect the USB device to the computer system. The computer system shows that the device cannot connect to the system. 3. On the connection information page, click the Help button to view the help information. 4. If the computer department

How does JavaScript achieve the infinite scroll effect of automatically loading when scrolling to the bottom of the page? The infinite scroll effect is one of the common features in modern web development. It can automatically load more content when scrolling to the bottom of the page, allowing users to obtain more data or resources without manually clicking buttons or links. In this article, we'll explore how to use JavaScript to achieve this functionality and provide specific code examples. To achieve the infinite scrolling effect of automatically loading when scrolling to the bottom of the page, it is mainly divided into the following

As the amount of data continues to increase, scrolling loading of web pages has gradually become an important part of the user experience. In this post, we will discuss a complete guide on how to implement infinite scroll loading using Vue.js. What is infinite scroll loading? Infinite scroll loading, also known as infinite scroll, is a web design technique used to add more content as the user scrolls to the bottom of the page. This technology is commonly used on blogs, social media, online stores and other websites that need to display content dynamically. Infinite scrolling is not the same as pagination. In traditional paging, users must
