document.querySelector()方法document.querySelectorA()
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了document.querySelector()方法document.querySelectorA()相关的知识,希望对你有一定的参考价值。
参考技术A 1、document.querySelector():-- 需要一个选择器的字符串作为参数,可以根据一个CSS选择器来查询一个元素节点对像, 如#box div 表示id为box的元素中的div
-- 使用该方法总会返回唯一的一个元素,如果满足的元素有多个,那么它只会返回第一个
2、document.querySelectorAll()用法与querySelector()相似,不同的是它会将符合条件的元素封装到一个数组中返回。
以上是关于document.querySelector()方法document.querySelectorA()的主要内容,如果未能解决你的问题,请参考以下文章
document.querySelector()和document.querySelectorAll()
如何将条件反应与 document.querySelector 关联?
Document.querySelector() 未显示所有元素