XPath 备忘清单

这是一份 XPath 选择器备忘单,其中列出了常用的 XPath 定位方法和 CSS 选择器

XPath 选择器

入门

XPath 即为 XML 路径语言(XML Path Language),它是一种用来确定XML文档中某部分位置的计算机语言。

  • Xpath test bed (whitebeam.org)
  • XPath 代表 XML 路径语言
  • XPath 使用 类似路径 语法识别和导航 XML 文档中的节点
  • XPath 包含超过 200 个内置函数
  • XPath 是 XSLT 标准中的主要元素
  • XPath 是 W3C 推荐的

FirefoxChrome 控制台中测试:

  1. $x('/html/body')
  2. $x('//h1')
  3. $x('//h1')[0].innerText
  4. $x('//a[text()="XPath"]')[0].click()

后代选择器

Xpath CSS
//h1 h1
//div//p div p
//ul/li ul > li
//ul/li/a ul > li > a
//div/* div > *
/ :root
/html/body :root > body

有序选择器

Xpath CSS
//ul/li[1] ul > li:first-child
//ul/li[2] ul > li:nth-child(2)
//ul/li[last()] ul > li:last-child
//li[@id="id"][1] li#id:first-child
//a[1] a:first-child
//a[last()] a:last-child

属性选择器

Xpath CSS
//*[@id="id"] #id
//*[@class="class"] .class
//input[@type="submit"] input[type=”submit”]
//a[@id="abc"][@for="xyz"] a#abc[for=”xyz”]
//a[@rel] a[rel]
//a[starts-with(@href, '/')] a[href^=’/‘]
//a[ends-with(@href, '.pdf')] a[href$=’pdf’]
//a[contains(@href, '://')] a[href*=’://‘]
//a[contains(@rel, 'help')] a[rel~=’help’]

兄弟姐妹选择器

Xpath CSS
//h1/following-sibling::ul h1 ~ ul
//h1/following-sibling::ul[1] h1 + ul
//h1/following-sibling::[@id="id"] h1 ~ #id

最有用的路径表达式

Xpath CSS

nodename | 选择名称为 nodename 的所有节点 / | 从根节点中选择 // | 从当前节点中选择文档中与选择匹配的节点,无论它们在哪里 . | 选择当前节点 .. | 选择当前节点的父节点 @ | 选择属性

杂项选择器

Xpath CSS
//h1[not(@id)] h1:not([id])
//button[text()="Submit"] 文字匹配
//button[contains(text(),"Go")] 文本包含(子字符串)
//product[@price > 2.50] 算术
//ul[*] 有孩子
//ul[li] 有孩子(具体)
//a[@name or @href] 或逻辑
`//a \ //div` 联合(加入结果)

jQuery

Xpath CSS
//ul/li/.. $(‘ul > li’).parent()
//li/ancestor-or-self::section $(‘li’).closest(‘section’)
//a/@href $(‘a’).attr(‘href’)
//span/text() $(‘span’).text()

运算符

运算符 说明 示例
`\ ` 计算两个节点集 `//book \ //cd`
+ 添加 6 + 4
- 减法 6 - 4
* 乘法 6 * 4
div 分配 8 div 4
= 平等的 price=9.80
!= 不相等 price!=9.80
< 小于 price<9.80
<= 小于或等于 price<=9.80
> 大于 price>9.80
>= 大于或等于 price>=9.80
or 或者 price=9.80 or price=9.70
and price>9.00 and price<9.90
mod 模数(除法余数) 5 mod 2

XPath 表达式

步骤和轴

- - - -
// ul / a[@id='link']
Axis Step Axis Step

前缀

前缀 例子 意思是
// //hr[@class='edge'] 任何地方
/ /html/body/div
./ ./div/p 相对的

Axes

Axis(轴) 例子 意思是
/ //ul/li/a 孩子
// //[@id="list"]//a 后裔

XPath Predicates(谓词)

Predicates(谓词)

  1. //div[true()]
  2. //div[@class="head"]
  3. //div[@class="head"][@id="top"]

仅当某些条件为真时才限制节点集。它们可以被链接起来。

操作符

  1. # 比较
  2. //a[@id = "xyz"]
  3. //a[@id != "xyz"]
  4. //a[@price > 25]
  1. # 逻辑 (and/or)
  2. //div[@id="head" and position()=2]
  3. //div[(x and y) or not(z)]

使用节点

  1. # 在函数内部使用它们
  2. //ul[count(li) > 2]
  3. //ul[count(li[@class='hide']) > 0]
  1. # 返回具有 `<li>` 子级的 `<ul>`
  2. //ul[li]

您可以在谓词中使用节点。

索引

  1. //a[1] # 第一个<a>
  2. //a[last()] # 最后一个<a>
  3. //ol/li[2] # 第二个<li>
  4. //ol/li[position()=2] # 和上面一样
  5. //ol/li[position()>1] #:not(:first-child)

[] 与数字一起使用,或者使用 last()position()

链接顺序

  1. a[1][@href='/']
  2. a[@href='/'][1]

顺序很重要,这两个是不同的。

嵌套谓词

  1. //section[.//h1[@id='hi']]

如果它有一个具有 id='hi'<h1> 后代,则返回 <section>

XPath 函数

节点功能

  1. name() # //[starts-with(name(), 'h')]
  2. text() # //button[text()="Submit"]
  3. # //button/text()
  4. lang(str)
  5. namespace-uri()
  1. count() # //table[count(tr)=1]
  2. position() # //ol/li[position()=2]

字符串函数

  1. contains() # font[contains(@class,"head")]
  2. starts-with() # font[starts-with(@class,"head")]
  3. ends-with() # font[ends-with(@class,"head")]
  1. concat(x,y)
  2. substring(str, start, len)
  3. substring-before("01/02", "/") #=> 01
  4. substring-after("01/02", "/") #=> 02
  5. translate()
  6. normalize-space()
  7. string-length()

布尔函数

  1. not(expr) # button[not(starts-with(text(),"Submit"))]

类型转换

  1. string()
  2. number()
  3. boolean()

XPath Axes

使用轴

  1. //ul/li # ul > li
  2. //ul/child::li # ul > li (same)
  3. //ul/following-sibling::li # ul ~ li
  4. //ul/descendant-or-self::li # ul li
  5. //ul/ancestor-or-self::li # $('ul').closest('li')

// ul /child:: li
Axis Step Axis Step

表达式的步骤由 / 分隔,通常用于选择子节点。 这并不总是正确的:您可以使用 :: 指定不同的“轴”。

子轴

  1. # 都一样
  2. //ul/li/a
  3. //child::ul/child::li/child::a

child:: is the default axis. This makes //a/b/c work.

  1. # 都一样
  2. # 这是因为 `child::li` 是真实的
  3. //ul[li]
  4. //ul[child::li]
  1. # 都一样
  2. //ul[count(li) > 2]
  3. //ul[count(child::li) > 2]

后代或自我轴

  1. # 都一样
  2. //div//h4
  3. //div/descendant-or-self::h4

//descendant-or-self:: 轴的缩写。

  1. # 都一样
  2. //ul//[last()]
  3. //ul/descendant-or-self::[last()]

其他轴

Axis Abbrev Notes

ancestor | | 选择当前节点的所有祖先(父母、祖父母等) ancestor-or-self | | 选择当前节点所有祖先(父、祖父等)和当前节点本身 attribute | @ | @hrefattribute::href 的缩写 child | | divchild::div 的缩写 descendant | | 选择当前节点的所有后代(子、孙等) descendant-or-self | // | ///descendant-or-self::node()/的缩写 选择当前节点和当前节点本身的所有后代(子、孙等) namespace | | 选择当前节点的所有命名空间节点 self | . | .self::node() 的缩写,选择当前节点 parent | .. | ..parent::node() 的缩写,选择当前节点的父节点 following | | 选择文档中当前节点结束标记之后的所有内容 following-sibling | | 选择当前节点之后的所有兄弟节点 preceding | | 选择文档中出现在当前节点之前的所有节点,除了祖先、属性节点和命名空间节点 preceding-sibling | | 选择当前节点之前的所有兄弟节点

您还可以使用其他轴。

联合

  1. //a | //span

使用 | 连接两个表达式。

XPath 更多示例

示例

  1. //* # 所有元素
  2. count(//*) # 计算所有元素
  3. (//h1)[1]/text() # 第一个 h1 标题的文本
  4. //li[span] # 找到一个 <li> 里面有一个 <span>
  5. # ...扩展到 //li[child::span]
  6. //ul/li/.. # 使用 .. 选择父级

查找(父)家长

  1. //section[h1[@id='section-name']]

查找直接包含 h1#section-name<section>

  1. //section[//h1[@id='section-name']]

查找包含 h1#section-name<section>。 (与上面相同,但使用后代或自我而不是孩子)

最近的

  1. ./ancestor-or-self::[@class="box"]

jQuery$().closest('.box') 一样工作。

属性

  1. //item[@price > 2*@discount]

查找 <item> 并检查其属性

另见