“Obtenez le nœud DOM avec xpath” Réponses codées

Obtenez le nœud DOM avec xpath

function getElementByXpath(path) {
  return document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}

// *** use *** 
// getElementByXpath(XpathTargetingDOMNode)
S4N705H

xpath nodejs

const xpath = require("xpath-html");
const node = xpath.fromPageSource(html).findElement("//*[contains(text(), 'with love')]");
// There is a library xpath-html that can help you using XPath to query HTML, with minimal efforts and lines of code.
// https://github.com/hieuvp/xpath-html
Worried Walrus

Réponses similaires à “Obtenez le nœud DOM avec xpath”

Questions similaires à “Obtenez le nœud DOM avec xpath”

Plus de réponses similaires à “Obtenez le nœud DOM avec xpath” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code