Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 6656 of XPathExpression

  • Revision slug: XPathExpression
  • Revision title: XPathExpression
  • Revision id: 6656
  • Created:
  • Creator: BlindWanderer
  • Is current revision? No
  • Comment looky what I found ^_^ I just wish I knew how to use it!; 43 words added

Revision Content

An XPathExpression is a compiled XPath query returned from document.createExpression(). It has a method evaluate() which can be used to execute the compiled XPath.

Methods

  • evaluate (contextNode, type, result) - provide a context node/document, XPathResult constant, and XPathResult to store the query or null to return a new XPathResult.
  • evaluateWithContext (contextNode, contextPosition, contextSize, type, result) - provide a context node/document, context position, context size, XPathResult constant, and XPathResult to store the query or null to return a new XPathResult.

Revision Source

<p>An XPathExpression is a compiled XPath query returned from <a href="/en/DOM/document.createExpression" title="en/DOM/document.createExpression">document.createExpression()</a>. It has a method <code>evaluate()</code> which can be used to execute the compiled XPath.</p>
<h3 id="Methods" name="Methods">Methods</h3>
<ul> <li>evaluate (<code>contextNode</code>, <code>type</code>, <code>result</code>) - provide a context node/document, <code><a href="/en/XPathResult" title="en/XPathResult">XPathResult</a></code> constant, and <code>XPathResult</code> to store the query or null to return a new XPathResult.</li> <li>evaluateWithContext (<code>contextNode</code>, <code>contextPosition</code>, <code>contextSize</code>, <code>type</code>, <code>result</code>) - provide a context node/document, context position, context size, <code><a href="/en/XPathResult" title="en/XPathResult">XPathResult</a></code> constant, and <code>XPathResult</code> to store the query or null to return a new XPathResult.</li>
</ul>
Revert to this revision