Skip to content

Commit dec0375

Browse files
committed
04-05
1 parent bf55fdd commit dec0375

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* [04-02](https://github.com/TYRMars/JSlearn#04-02) `DOM本质`
2828
* [04-03](https://github.com/TYRMars/JSlearn#04-03) `DOM节点操作`
2929
* [04-04](https://github.com/TYRMars/JSlearn#04-04) `DOM结构操作`
30+
* [04-05](https://github.com/TYRMars/JSlearn#04-05) `DOM知识总结`
3031

3132

3233

@@ -1104,6 +1105,21 @@ div1.removeChild(child[0]);
11041105
</body>
11051106
</html>
11061107
```
1108+
## 04-05
1109+
### DOM知识解答
1110+
* DOM是哪种基本的数据结构?
1111+
*
1112+
* DOM操作的常用API有哪些
1113+
* 获取DOM节点,以及节点的`property``Attribute`
1114+
* 获取父节点,获取子节点
1115+
* 新增节点,删除节点
1116+
* `DOM节点``Attribute``property`有何区别
1117+
* `property`只是一个`JS对象`的属性的修改
1118+
* `Attribute`是对`html标签`属性的修改
1119+
* 重点总结
1120+
* DOM本质
1121+
* DOM节点的操作
1122+
* DOM结构操作
11071123

11081124
---
11091125

0 commit comments

Comments
 (0)