DocumentFragment.querySelectorAll()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
DocumentFragment.queryselectorall() 方法返回NodeList
中的元素DocumentFragment
(使用文档节点的深度优先顺序遍历) 匹配指定的选择器组。
如果参数中指定的选择器无效,则会引发一个带 SYNTAX_ERR 值的DOMException
。
备注:这个 API 的定义被移动到ParentNode
接口。
语法
js
querySelectorAll(selectors)
参数
示例
此示例返回 DocumentFragment 中所有 div 元素的列表,其中包含一个类“note”或“alert”:
js
var matches = documentfrag.querySelectorAll("div.note, div.alert");
规范
Specification |
---|
DOM Standard # ref-for-dom-parentnode-queryselectorall① |
浏览器兼容性
BCD tables only load in the browser
参阅
- 它所属的
DocumentFragment
接口。