


charset: Optional. Specifies the character set of the code introduced by src. Most browsers ignore this value.
defer: boolean, optional. Delaying script execution is equivalent to placing the script tag at the bottom of the body tag of the page. The js script will be executed before DOMContentLoaded of the document. Except for IE and newer versions of Firefox, other browsers are not supported.
language: Deprecated. Most browsers ignore this value.
src: optional. Specify the imported external code file, without limiting the suffix name.
type: required. Specifies the content type (MIME type) of the script. In reality, it is usually not necessary to specify this value. The browser will interpret and execute it as text/javascript type by default.
script attribute in HTML5 : In addition to the attributes defined by the new HTML5 standard, the
script tag in HTML5 has removed the language attribute and modified it compared to HTML4.01. The type attribute is optional (default text/javascript), and a new attribute async is added.
async: boolean, the role of the attribute, defines whether the script is executed asynchronously, the value is true or false.
If async is set to true , the defer attribute will be ignored.
Asynchronously executed js files are assumed not to use document.write() to write content to the loading document, so do not use document.write() during the loading and execution of asynchronously executed js files
Except In addition to the script tag attribute, the way the page introduces the js file affects its loading and execution mode:
Any js file introduced by adding a script node (such as appendChild(scriptNode)) is executed asynchronously (scriptNode needs to be inserted into the document, Just creating the node and setting src will not load the js file, which is not analogous to the preloading of img)
The code in the <script> tag in the html file or the code in the js file referenced by src is loaded synchronously And the code in the <script> tag in the executed <BR>html file uses the document.write() method to introduce the js file which is referenced by the src attribute of the <script> tag in the <BR>html file that is executed asynchronously. The js file introduced using the document.write() method in the code of the js file is executed synchronously <BR>Use the Image object to asynchronously preload the js file (will not be executed) <br><br>Do not use something like the following This method will not initiate a request to load the js file: <BR>divNode.innerHTML = '<script src="xxx.js"></script>';
window.onload event will be executed in js Triggered only after the file is loaded (even if it is loaded asynchronously)
====================================== =================
1.
<script> <BR>//Synchronously load the executed code <BR></script>
2.
//Synchronously load and execute the code in xx.js
3.
<script> <BR>document. write('<script src="xx.js"></script>'); //Asynchronously load and execute the code in xx.js
4,
xx.js contains the following code:
document.write('');
document.write('< ;script src="22.js">');
Then xx.js, 11.js, and 22.js are all loaded and executed synchronously.
If xx.js, 11.js and 22.js are loaded asynchronously by inserting script nodes, then 11.js and 22.js are loaded asynchronously.
If xx.js is loaded asynchronously by inserting script nodes, 11.js and 22.js are loaded in document.write(script) mode, then 11.js and 22.js are loaded synchronously (tested by the latest browser, under chrome, the asynchronous loading execution of xx.j is no longer available document.write() writes content to the document, but firefox and IE can write before the document is closed (the method is to use alert in html to prevent the document from closing))
Test: alert() in 11.js ( Do not use a for loop, the browser is executed in a single thread, and continuing to execute any piece of code will cause the rest of the code to be blocked), console.log() in 22.js, you can see that the code in 22.js is blocked
5.
In the following method, xx.js will be loaded and executed asynchronously after appendChild is executed
var script = document.createElement("script");
script.setAttribute("src","xx.js");
documenrt.getElementsByTagName("head") [0].appendChild(script);
6. Use the Image object to asynchronously preload js files (will not be executed)
The request is initiated when the src of the Image is assigned, and the file type is not picky (the image may also be dynamically created by a script, such as Verification code), so you can assign the url of the js file to image.src, and the js will be cached by the browser after loading.
var img = new Image();
img.onload = function(){ alert(1); }; //Since the returned js file MIME is not an image, The onload callback function will not be triggered
img.src = 'http://localhost/test/loadjs/try.2.js';
var s = document.createElement("script");
var h = document.getElementsByTagName("head")[0];
//Execute js
s.src=img.src;
h.appendChild(s);
A function to load js files:
var loadJS = function(url,callback){
var head = document.getElementsByTagName('head');
if(head&&head.length){
head = head[0];
}else{
head = document.body;
}
var script = document.createElement('script');
script.src = url;
script.type = "text/javascript";
head.appendChild( script);
script.onload = script.onreadystatechange = function(){
//Script tag, IE has onreadystatechange event, w3c standard has onload event
//These readyState It is for IE8 and below. The W3C standard script tag does not have onreadystatechange and this.readyState.
//Onload will not be executed if the file is not loaded successfully.
//(!this.readyState) is for the W3C standard. IE 9 also supports the W3C standard onload
if ((!this.readyState) || this.readyState == "complete" || this.readyState == "loaded" ){
callback();
}
}//end onreadystatechange
}
For the test of point 4 (synchronous loading) (inserting alert makes it easy to see the blocking during loading)
tryjs .html
< ;html>
tryjs .js
console.log('write begin');
document.write('');
document.write('');
console.log('write finished');
try.1.js
console.log('loadjs 1 begin');
console.log('loadjs 1 finished');
try.2.js
console.log('loadjs 2 begin');
console.log('loadjs 2 finished');
Test results (the order of callback complete of file 2 and file 1 is uncertain in IE789)
IE 7:
Log: outer js callback loading IE
Log: outer js callback loaded IE
Log : write begin
log: write finished
log: outer js callback complete IE
log: file 1 callback loading IE
log: file 2 callback loading IE
log: loadjs 1 begin
Log: loadjs 1 finished
Log: loadjs 2 begin
Log: loadjs 2 finished
Log: file 2 callback complete IE
Log: file 1 callback complete IE
IE8:
Log: outer js callback loading IE
Log: outer js callback loaded IE
Log: write begin
Log: write finished
Log: outer js callback complete IE
Log: file 1 callback loading IE
log: file 2 callback loading IE
log: loadjs 1 begin
log: loadjs 1 finished
log: loadjs 2 begin
log: loadjs 2 finished
log : file 2 callback complete IE
log: file 1 callback complete IE
IE9:
log: write begin
log: write finished
log: outer js callback complete IE
Log: file 1 callback loading IE
Log: file 2 callback loading IE
Log: loadjs 1 begin
Log: loadjs 1 finished
Log: loadjs 2 begin
Log: loadjs 2 finished
Log: file 1 callback complete IE
Log: file 2 callback complete IE
FIREFOX:
write begin
write finished
outer js callback, not IE
loadjs 1 begin
loadjs 1 finished
file 1 callback,NOT IE
loadjs 2 begin
loadjs 2 finished
file 2 callback,NOT IE
CHROME:
write begin
write finished
outer js callback, not IE
loadjs 1 begin
loadjs 1 finished
file 1 callback,NOT IE
loadjs 2 begin
loadjs 2 finished
file 2 callback,NOT IE

Ajax异常大揭秘,如何应对各种错误,需要具体代码示例2019年,前端开发已经成为互联网行业中不可忽视的重要岗位。而Ajax作为前端开发中最常用的技术之一,能够实现页面异步加载和数据交互,其重要性不言而喻。然而,使用Ajax技术时经常会遇到各种错误和异常,如何应对这些错误是每一位前端开发者必须面对的问题。一、网络错误在使用Ajax发送请求时,最常见的错误就是

标题:解决jQuery.val()不起作用的方法及代码示例在前端开发中,经常会使用到jQuery来操作页面元素。其中,获取或设置表单元素的值是常见的操作之一。通常,我们会使用jQuery的.val()方法来实现对表单元素值的操作。然而,有时候会遇到jQuery.val()不起作用的情况,这可能会导致一些问题。本文将介绍如何有效应对jQuery.val(

Scrapy是一个开源的Python爬虫框架,它可以快速高效地从网站上获取数据。然而,很多网站采用了Ajax异步加载技术,使得Scrapy无法直接获取数据。本文将介绍基于Ajax异步加载的Scrapy实现方法。一、Ajax异步加载原理Ajax异步加载:在传统的页面加载方式中,浏览器发送请求到服务器后,必须等待服务器返回响应并将页面全部加载完毕才能进行下一步操

Vue3中的suspense函数详解:优化异步数据加载在现代网站和应用程序中,异步数据加载是必不可少的。但是,由于网络连接速度的不稳定性,异步数据加载可能导致用户界面的延迟和卡顿。为了解决这个问题,Vue3引入了一个新的suspense函数来优化异步数据加载。suspense函数是Vue3中的一个新特性,它允许您在异步加载数据时展示一个加载中的UI,直到异步

Vue3中的defineAsyncComponent函数详解:异步加载组件的应用在Vue3中,我们经常会遇到异步加载组件的需求。这时我们就可以使用Vue3提供的defineAsyncComponent函数来实现异步加载组件的功能。本文将详细介绍Vue3中defineAsyncComponent函数的用法和应用场景。一、defineAsyncComponent

前端开发者必备:掌握这些优化模式,让网站飞起来!随着互联网的快速发展,网站已经成为企业宣传和交流的重要渠道之一。一个性能优良、加载迅速的网站不仅可以提升用户体验,还可以吸引更多的访问者。作为一名前端开发者,掌握一些优化模式是必不可少的。本文将介绍一些常用的前端优化技术,帮助开发者更好地优化网站。压缩文件在网站开发中,经常使用的文件类型包括HTML、CSS和J

Vue3是一个非常流行的前端框架,它将组件化思想带入到前端开发中,使得开发者能够更快速、更高效地构建复杂的应用程序。在Vue3中,我们经常会使用组件来构建页面,并且使用大量的第三方组件库来扩展我们的功能。但是,加载多个组件可能会导致应用程序的启动速度变慢,这就是为什么我们需要异步加载组件。在Vue3中,提供了一个函数叫做defineAsyncComponen

网站性能优化大揭秘:掌握这些方式,让你的网站飞起来!随着互联网的快速发展,网站已经成为企业宣传、产品展示和交流互动的重要渠道。然而,当用户访问网站时,如果加载速度过慢、响应时间过长,用户体验将会大打折扣,甚至可能直接导致用户离开。因此,网站性能优化变得越来越重要。那么,什么是网站性能优化呢?简单来说,网站性能优化是通过一系列的方式和技术手段,提升网站的加载速


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

Dreamweaver CS6
Visual web development tools

Dreamweaver Mac version
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

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

Zend Studio 13.0.1
Powerful PHP integrated development environment
