1.4 DOM 操作DOM(Document Object Model,文档对象模型)是 HTML 文档的编程接口,JavaScript 通过 DOM 与 HTML 页面进行交互。
一、DOM 概述什么是 DOMDOM 是 HTML 文档的树状结构表示,JavaScript 可以通过 DOM 访问和修改页面内容。
12345678910HTML 文档 └── 文档节点(document) └── html 元素 ├── head 元素 │ ├── title 元素 │ └── ...
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo ser