We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf55fdd commit dec0375Copy full SHA for dec0375
1 file changed
README.md
@@ -27,6 +27,7 @@
27
* [04-02](https://github.com/TYRMars/JSlearn#04-02) `DOM本质`
28
* [04-03](https://github.com/TYRMars/JSlearn#04-03) `DOM节点操作`
29
* [04-04](https://github.com/TYRMars/JSlearn#04-04) `DOM结构操作`
30
+* [04-05](https://github.com/TYRMars/JSlearn#04-05) `DOM知识总结`
31
32
33
@@ -1104,6 +1105,21 @@ div1.removeChild(child[0]);
1104
1105
</body>
1106
</html>
1107
```
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结构操作
1123
1124
---
1125
0 commit comments