The XPathEvaluator interface allows to compile and evaluate XPath
The XPathEvaluator interface allows to compile and evaluate XPath
(create-expression this expression resolver)
Method.
This method compiles an web.xpath.XPathExpression
which can
be used for (repeated) evaluations of the XPath expression.
XPathExpression XPathEvaluator.createExpression(expression, resolver);
See also: https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/createExpression
Method. This method compiles an `web.xpath.XPathExpression` which can be used for (repeated) evaluations of the XPath expression. `XPathExpression XPathEvaluator.createExpression(expression, resolver);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/createExpression`
(create-ns-resolver this node-resolver)
Method.
This method adapts any DOM node to resolve namespaces so that XPath expression can be easily evaluated relative to the context the node where it appeared within the document.
XPathNSResolver XPathEvaluator.createNSResolver(nodeResolver);
See also: https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/createNSResolver
Method. This method adapts any DOM node to resolve namespaces so that XPath expression can be easily evaluated relative to the context the node where it appeared within the document. `XPathNSResolver XPathEvaluator.createNSResolver(nodeResolver);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/createNSResolver`
(evaluate this expression context-node resolver type result)
Method.
The evaluate() method of the web.xpath.XPathEvaluator
interface
an XPath expression on the given node or document and returns
web.xpath.XPathResult
.
XPathResult XPathEvaluator.evaluate(expression, contextNode, resolver, type, result);
See also: https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/evaluate
Method. The evaluate() method of the `web.xpath.XPathEvaluator` interface an XPath expression on the given node or document and returns `web.xpath.XPathResult`. `XPathResult XPathEvaluator.evaluate(expression, contextNode, resolver, type, result);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/evaluate`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close