gpt4 book ai didi

javascript - 子 Node 上的 XPath 选择

转载 作者:行者123 更新时间:2023-12-02 23:07:05 27 4
gpt4 key购买 nike

我目前正在尝试在子 Node 上创建一个新的 xpath。但它不起作用。

如何存档?

想法是:

    xpath.select('//*[contains(@class, "product-grid__item")]', doc).forEach(node => {
node = node as Node;

xpath.select('/a /*[contains(@class, "desc-height")] /strong', node).forEach(z => {
z = z as Node;
console.log(z.textContent);
})
})

但是第二个请求不是在 Node 上选择,而是在文档上选择。

最佳答案

表达式

/a/*[contains(@class, "desc-height")]/strong

absolute location path并且它将对每个上下文 Node 进行同等评估。

您需要一个relative location path喜欢

a/*[contains(@class, "desc-height")]/strong

注意:一些文献总是会向您显示以 开头的相对 XPath 表达式。 abbreviate syntax就像./a/*[contains(@class, "desc-height")]/strong。那是不需要的。一些不符合规范的 XPath 引擎可能只是因为解析这种表达式。

关于javascript - 子 Node 上的 XPath 选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57537562/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com