DOMapi

NodeList 表示 HTML 元素集合

选择器
- 作用:选中html元素,在js中以对象形式存在,
- js通过对dom对象下属性多次赋值,以及api使用,完成页面动画
- **注意:选择器返回值,有的是dom对象,有的集合,如果是集合,需要从集合中取值获取dom对象**

document.api
- document.getElementById()
- document.getElementsByClassName();
- document.getElementsByTagName();
- document.querySelector()
- document.querySelectorAll()
-...

'区别'
- 1:getElement...() 返回是 **HTMLCollection**,当使用 remove() removeChild() 删除时,集合长度会变

DOMapi最先出现在Python成神之路

版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/29401.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>