JS has a very silent blocking feature, that is, when the browser is executing JS code, it cannot do anything else at the same time, regardless of whether the code is embedded or external.
When the browser encounters a <script> tag that introduces an external JS file, it will stop all work to download, parse and execute it. In this process, page rendering and user interaction are completely blocked. In order to avoid page loading When there is a pause or even a blank page, the JS script should be placed at the bottom of the page as much as possible. This is very important: </script>
<html> <head> <title>无标题文档</title> <link rel="stylesheet" type="text/<a href="http://www.php1.cn/category/72.html">css</a>" href="http://www.php1.cn/"> </head> <body> <p>页面的内容。。。</p> <!-- 推荐的位置,页面底部: --> <script type="text/javascript" src="file1.js"></script> <script type="text/javascript" src="file2.js"></script> <script type="text/javascript" src="file3.js"></script> </body> </html>
In order to improve the above blocking situation, the number of occurrences of the <script> tag in the page should be reduced as much as possible. This At the same time, it is also considered that HTTP requests will bring additional performance overhead, which means that the number of external link scripts in the page should be reduced. </script>
You can manually merge your multiple JS files, or you can use a real-time online service like Yahoo! combo handler to achieve it. For example, the <script> tag below actually loads 3 JS files: </script>
<html> <head> <title>无标题文档</title> <link rel="stylesheet" type="text/<a href="http://www.php1.cn/category/72.html">css</a>" href="http://www.php1.cn/"> </head> <body> <p>页面的内容。。。</p> <!-- 推荐的位置,页面底部: --> <script type="text/javascript" src="http://yui.yahooapis.com/combo?file1.js&file2.js&file3.js"></script> </body> </html>
In order to solve the blocking situation, here are several solutions to implement parallel downloading of JS scripts.
1. Deferred script
HTML4 defines a defer attribute for the <script> tag, which can delay the execution of this code. However, this attribute is only supported by IE4+ and Firefox 3.5+. The <script> that declares the defer attribute will be parsed and executed before the DOM loading is completed and the window.onload event is triggered: </script>
<script type="text/javascript" src="file1.js" defer></script>
2. Dynamic script elements
This is the most common solution, dynamically created through the DOM element and inserted into the document, the file starts downloading when the element is added to the page, so that no matter when the download is started, the download and execution process of the file will not block other processes on the page.
However, please note that the code loaded in this way will be executed immediately, so you need to clearly understand the role of each file and the reasonable execution sequence. At this time, it is necessary to track and ensure that the script download is completed and ready, not IE The browser will trigger a load event when the <script> element is completed, while IE will trigger a readystatechange event and judge it through the readyState attribute. The following is a function to dynamically load a JS script compatible with: </script>
function load_script(url, callback) { var script = document.createElement('script'); script.type = 'text/javascript'; if (script.readyState) { //IE script.onreadystatechange = function() { if (script.readyState == 'loaded' || script.readyState == 'complete') { script.onreadystatechange = null; callback(); } } } else { //others script.onload = function() { callback(); } } script.src = url; document.getElementsByTagName('head')[0].appendChild(script); }
You can save this function to a load_script.js file, and then use this function to load other scripts. When multiple scripts are to be loaded, in order to ensure correct In the loading sequence, the execution of load_script() can be connected in series, and finally placed at the bottom of the page as mentioned before. This is a perfect solution:
<script type="text/javascript" src="load_script.js"></script> <script type="text/javascript"> load_script('file1.js', function() { load_script('file2.js', function() { load_script('file3.js', function() { //全部载入后的操作... } ); } ); } ); </script>
3. XMLHttpRequest script injection
means loading through AJAX , but this method cannot achieve cross-domain loading and is not suitable for large websites.
Of course, the work we have done above has been completed by those talented people, and some excellent JS libraries have been written for us to use. They can all solve the blocking problem of JS scripts and achieve parallel downloading, for example: YUI3, LazyLoad, LABjs, etc.
The above is how to speed up the loading and execution of JavaScript. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


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

Atom editor mac version download
The most popular open source editor

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.

Dreamweaver Mac version
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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.
