Skip to content

Commit a43033f

Browse files
lycheeEngleviding
andauthored
Update 2-ui/5-loading/02-script-async-defer/article.md
Co-Authored-By: LeviDing <[email protected]>
1 parent 6fe544b commit a43033f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2-ui/5-loading/02-script-async-defer/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ document.body.append(script); // (*)
146146
- 它们不会等待其他内容,其他的内容也不会等待它们。
147147
- 先加载完成的脚本先运行(“加载优先” 顺序)
148148

149-
我们可以通过将 `async` 属性显示修改为 `false` 来将加载优先顺序修改为文档顺序(就像常规脚本一样):
149+
我们可以通过将 `async` 属性显示修改为 `false` 以将加载优先顺序修改为文档顺序(就像常规脚本一样):
150150

151151
```js run
152152
let script = document.createElement('script');

0 commit comments

Comments
 (0)