XPathEvaluator
interface allows to compile and evaluate
XPath
表达式。
It is implemented by the
Document
接口。
XPathEvaluator.createExpression()
Creates a parsed XPath expression with resolved namespaces.
XPathEvaluator.createNSResolver()
Adapts any DOM node to resolve namespaces allowing the XPath expression to be evaluated relative to the context of the node where it appeared within the document.
XPathEvaluator.evaluate()
Evaluates an XPath expression string and returns a result of the specified type if possible.
The following example shows the use of the
XPathEvaluator
接口。
<div>XPath example</div> <div>Number of <div>s: <output></output></div>
var xpath = "//div";
var evaluator = new XPathEvaluator();
var expression = evaluator.createExpression("//div");
var result = expression.evaluate(document, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE);
document.querySelector("output").textContent = result.snapshotLength;
| 规范 | 状态 | 注释 |
|---|---|---|
|
DOM (文档对象模型) 3 级 XPath 规范
在该规范中的 XPathEvaluator 定义。 |
推荐 | 初始定义 |
No compatibility data found. Please contribute data for "api.XPathEvaluator" (depth: 1) to the MDN 兼容性数据存储库 .
XPathEvaluator