IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> js_html中script脚本加载/defer/async属性 -> 正文阅读

[JavaScript知识库]js_html中script脚本加载/defer/async属性

reference

defer&async

脚本的加载运行策略可以通过配置script标签的defer&async属性做行为上的控制(都是现代的js加载控制技术)
在这里插入图片描述

前三行的时间线展示了,js脚本的加载和运行是连个相对独立的阶段

  • defer属性,可以将脚本的加载和运行划分为明显不连续的两个阶段
    • (In this case both the script and the HTML will load simultaneously and the code will work.)
    • defer only works for external scripts
    • Scripts loaded with the defer attribute will load in the order they appear on the page.
    • defer is useful if your scripts depend on the DOM being in place (e.g. they modify one or more elements on the page)
    • defer是针对js的执行时机
    • defer加载脚本的顺序比async更加有序
  • async 属性:
    • 加载脚本时不阻塞其他工作的进行,而一旦某个脚本加载完毕,就开始运行该脚本(同时同时会阻塞其他工作)
    • It is best to use async when the scripts in the pagerun independently from each other and depend on no other script on the page.
    • async should be used when you have a bunch of background scripts to load in, and you just want to get them in place as soon as possible.
    • async的加载和执行比defer要连贯,当你希望尽快加载并执行脚本的时候,使用async(async方式加载脚本的时候不会阻塞HTML Parser)

script 标签所在位置

  • script 标签可以写在html的head标签内
    • 但是为了让代码能够正确的执行(符合预期),往往需要做一些主要逻辑之外的额外的工作
      • 对于internal js,我们可以组织代码,让代码使用时间监听的方式(打包主要逻辑)来避免js在不合适的时间点执行
    • 对于external js 我们可以使用defer属性配置script标签
  • 将js放置在html末尾的方式属于过时的方式

To summarize:

  • async and defer both instruct the browser to download the script(s)in a separate thread, while the rest of the page (the DOM, etc.) is downloading, so the page loading is not blocked during the fetch process.
  • scripts with an async attribute willexecute as soon as the download is complete. This blocks the page and does not guarantee any specific execution order.
  • scripts with a defer attribute will load in the order they are in and will only execute once everything has finished loading.
  • If your scripts should be run immediately and they don’t have any dependencies, then use async.
  • If your scripts need to wait for parsing and depend on other scripts and/or the DOM being in place, load them using defer and put their corresponding <script> elements in the order you want the browser to execute them.

简单地说,没有加载顺序要求的使用async属性

对脚本加载顺序有严格要求的,使用defer属性(仅针对从外部加载脚本文件的时候)

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-03 16:03:16  更:2022-03-03 16:07:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 9:01:20-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码