获取页面元素的方法

document.querySelector(‘样式表选择器’)

如document.querySelector('#app>img'),精准定位到某个元素

还有其他不常用的:

document.getElementById('标识')   ------>  返回的是HTMLElement

document.getElementByTagName('标签名')  -------->  返回的是NodeList

document.getElementByClassName('类名')  -------->  返回的是NodeList

document.querySelector(‘样式表选择器’)   ------>  返回的是HTMLElement

document.querySelectorAll(‘样式表选择器’)   ------>  返回的是NodeList

 firstChild/lastChild/children  ------- 获取子节点

parentNode  -----  获取父节点

previousSibling/nextSibling  ------  获取兄弟节点

 

posted @ 2021-09-24 08:24  安静ovo  阅读(202)  评论(0编辑  收藏  举报