📌  相关文章
📜  queryselectorAll 返回什么? - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:22.789000             🧑  作者: Mango

代码示例1
The querySelectorAll() method returns all elements in the document
that matches a specified CSS selector(s), as a static NodeList object.
The NodeList object represents a collection of nodes.
The nodes can be accessed by index numbers.
The index starts at 0.