Skip to content

Latest commit

 

History

History
14 lines (7 loc) · 418 Bytes

HTML基本问题.md

File metadata and controls

14 lines (7 loc) · 418 Bytes

HTML 中Node和Element的区别

DOM 中的所有节点都是Node,而Node是Element的基类,Element 是其他HTML 元素的基类

node

HTMLCollection 和 NodeList 有什么区别

HTMLCollection 和 NodeList 都是类数组,并不是真正的数组

HTMLCollection是 Element 的集合

NodeList是 Node 的集合