JavaScript lazy loading is one of those problems on the web that can drive you crazy trying to find a solution.
Many people say "then use defer" or "async", and some even say "then put your javascript code at the bottom of the page code".
None of the above methods can solve the problem of loading external js after the web page is fully loaded. The above method will also occasionally cause you to receive "delayed loading javascript" warnings from Google's page speed test tool. So the solution here will be the recommended solution from the Google help page.
How to lazy load JavaScript
The following is the code recommended by Google. This code should be placed before the
tag (near the bottom of the HTML file). Also, I highlighted the external JS file name.
<script type="text/javascript">
function downloadJSAtOnload() {
var element = document.createElement("script");
element.src = "defer.js";
document.body.appendChild(element);
}
if (window.addEventListener)
window.addEventListener("load", downloadJSAtOnload, false);
else if (window.attachEvent)
window.attachEvent("onload", downloadJSAtOnload);
else window.onload = downloadJSAtOnload;
</script>
Copy after login
What is done here?
This code means to wait until the entire document is loaded before loading the external file "defer.js".
Specific instructions
1. Copy the above code
2. Paste the code before the tag of HTML (near the bottom of the HTML file)
3. Modify "defer.js" to your external JS file name
4. Make sure your file path is correct. For example: If you only enter "defer.js", then the "defer.js" file must be in the same folder as the HTML file.
Where can this code be used (and where cannot it be used)
This code will not load the specified external JS file until the document is loaded. Therefore, JavaScript code that depends on normal page loading should not be placed here. Instead, JavaScript code should be separated into two groups. One group is the javascript code that is loaded immediately because the page needs it, and the other group is the javascript code that operates after the page is loaded (such as adding a click event or other things). The JavaScript code that needs to wait until the page is loaded before executing should be placed in an external file and then imported.
For example, on this page I use the above files for lazy loading - Google analytics, Viglink (how I make money), and the Google badge that appears at the bottom (my social media). To me, there is no reason to load these files on the initial page load because there is no need to load the above irrelevant content at the initial stage. Maybe you have a file of the same nature on your page. Then do you want users to wait for these files to load before seeing the content of the web page?
Why not use other methods?
Inserting code directly, placing scripts at the bottom, and using "defer" or "async" cannot achieve the purpose of loading the page first and then loading the JS, and they certainly will not perform consistently across browsers.
Why is it important?
Its importance is due to the fact that Google uses page speed as one of the ranking factors and users also want pages to load quickly. It is also very important for mobile search engine optimization. Google measures page speed based on how long it takes the page to initially load. This means you have to get the page's load event as quickly as possible. The initial page load time is how Google evaluates the quality of your web pages (and don’t forget that users are waiting for the page to load). Google actively promotes and recommends arranging the above irrelevant content in order of importance and keeping all resources (js, css, images, etc.) out of the critical rendering path, and doing so is worth the effort. If it pleases users and makes Google happy, you should do it.
Usage example
I have created a page where you can see this code in use.
Sample files for you to test
Okay, to illustrate, I've made a few sample pages for you to test. Every page does the same thing. This is an ordinary HTML page, containing a javascript script that waits for 2 seconds and then outputs "hello world". You can test these files and you will see that there is only one method and its loading time is excluding the 2 seconds wait time.
Pages with external scripts using "defer" – Click here
Pages using the above referral code – Click here
Key points
The overriding priority should be to deliver content to users as quickly as possible. And we have never thought about how to treat our javascript code. But users should not be forced to wait for content for some insignificant script. No matter how cool your footer is, there's no reason for a user who might never scroll to the footer to load the JavaScript files that make it cool.
The above is the entire content of this article, I hope you all like it.
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
SpringDataJPA is based on the JPA architecture and interacts with the database through mapping, ORM and transaction management. Its repository provides CRUD operations, and derived queries simplify database access. Additionally, it uses lazy loading to only retrieve data when necessary, thus improving performance.
Article keywords: JavaJPA performance optimization ORM entity management JavaJPA (JavaPersistance API) is an object-relational mapping (ORM) framework that allows you to use Java objects to operate data in the database. JPA provides a unified API for interacting with databases, allowing you to use the same code to access different databases. In addition, JPA also supports features such as lazy loading, caching, and dirty data detection, which can improve application performance. However, if used incorrectly, JPA performance can become a bottleneck for your application. The following are some common performance problems: N+1 query problem: When you use JPQL queries in your application, you may encounter N+1 query problems. In this kind of
As usual, let’s ask a few questions: Why dynamic linking? How to do dynamic linking? What is address-independent code technology? What is delayed binding technology? How to do explicit linking while the program is running? Why dynamic linking? The emergence of dynamic linking is to solve some shortcomings of static linking: saving memory and disk space: As shown in the figure below, Program1 and Program2 contain two modules, Program1.o and Program2.o respectively, and they both require the Lib.o module. In the case of static linking, both target files use the Lib.o module, so they have copies in the executable files Program1 and program2 output by the link and run at the same time.
Decoding Laravel performance bottlenecks: Optimization techniques fully revealed! Laravel, as a popular PHP framework, provides developers with rich functions and a convenient development experience. However, as the size of the project increases and the number of visits increases, we may face the challenge of performance bottlenecks. This article will delve into Laravel performance optimization techniques to help developers discover and solve potential performance problems. 1. Database query optimization using Eloquent delayed loading When using Eloquent to query the database, avoid
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
Tips for optimizing Hibernate query performance include: using lazy loading to defer loading of collections and associated objects; using batch processing to combine update, delete, or insert operations; using second-level cache to store frequently queried objects in memory; using HQL outer connections , retrieve entities and their related entities; optimize query parameters to avoid SELECTN+1 query mode; use cursors to retrieve massive data in blocks; use indexes to improve the performance of specific queries.
Here are some ways to optimize HTML images that are too large: Optimize image file size: Use a compression tool or image editing software. Use media queries: Dynamically resize images based on device. Implement lazy loading: only load the image when it enters the visible area. Use a CDN: Distribute images to multiple servers. Use image placeholder: Display a placeholder image while the image is loading. Use thumbnails: Displays a smaller version of the image and loads the full-size image on click.
How to prevent iframe loading events In web development, we often use iframe tags to embed other web pages or content. By default, when the browser loads an iframe, the loading event is triggered. However, in some cases we may want to delay the loading of an iframe, or prevent the loading event entirely. In this article, we'll explore how to achieve this through code examples. 1. Delay loading of iframe If you want to delay loading of iframe, we can use