-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96d1c36
commit 4a1ca18
Showing
68 changed files
with
58 additions
and
451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/frontend-advanced/React/一个简单调度器的实现.md → ...ontend-advanced/React/17.React的调度器怎么实现.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
order: 1 | ||
--- | ||
# 一个简单调度器的实现 | ||
# React的调度器怎么实现 | ||
|
||
|
||
```js | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
--- | ||
icon: html | ||
index: false | ||
--- | ||
# HTML | ||
|
||
123 | ||
## 1. Doctype 作用 | ||
|
||
DOCTYPE 是用来声明文档类型和 DTD 规范的。 `<!DOCTYPE html>`声明位于 HTML 文档中的第一行,不是一个 HTML 标签,处于 html 标签之前。告知浏览器的解析器用什么文档标准解析这个文档。DOCTYPE 不存在或格式不正确会导致文档以兼容模式呈现。 | ||
|
||
## 2. 对 HTML 语义化的理解 | ||
|
||
语义化的优点如下: | ||
|
||
- 有利于 SEO | ||
- 增强了可读性,便于团队的开发与维护 | ||
- 无障碍阅读 | ||
|
||
## 3. script 标签中 defer 和 async 的区别 | ||
|
||
默认会下载资源,等资源下载完成后再执行代码 | ||
|
||
**defer:** 遇到 script 标签,直接下载,等待 HTML 解析完成之后,再执行脚本 | ||
**async:** 遇到 script 标签,直接下载,不阻塞 HTML 解析,当下载完成后,直接执行,可能会阻塞部分 HTML 解析 |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,7 @@ var removeElements = function (head, val) { | |
|
||
4. 算法:环形链表 | ||
|
||
5. 算法:相交链表 | ||
5. 算法:相交链表 | ||
|
||
## 2023-09-08 | ||
1. 环形链表 II |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.