Быстрый справочник XPath

Селекторы

Селекторы потомков

CSSXpath?
h1//h1?
div p//div//p?
ul > li//ul/li?
ul > li > a//ul/li/a
div > *//div/*
:root/?
:root > body/body

Атрибутные селекторы

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

Селекторы порядка

CSSXpath?
ul > li:first-of-type//ul/li[1]?
ul > li:nth-of-type(2)//ul/li[2]
ul > li:last-of-type//ul/li[last()]
li#id:first-of-type//li[1][@id="id"]?
a:first-child//*[1][name()="a"]
a:last-child//*[last()][name()="a"]

Соседи

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

jQuery

CSSXpath?
$('ul > li').parent()//ul/li/..?
$('li').closest('section')//li/ancestor-or-self::section
$('a').attr('href')//a/@href?
$('span').text()//span/text()

Прочее

CSSXpath?
h1:not([id])//h1[not(@id)]?
Точное совпадение текста//button[text()="Submit"]?
Совпадение текста (часть)//button[contains(text(),"Go")]
Арифметика//product[@price > 2.50]
Есть дети//ul[*]
Есть конкретные дети//ul[li]
Логика OR//a[@name or @href]?
Объединение (union)//a | //div?

Class check

//div[contains(concat(' ',normalize-space(@class),' '),' foobar ')]

В XPath нет оператора «проверить вхождение в список, разделённый пробелами». Это стандартный обходной вариант.

Выражения

Шаги и оси

//ul/a[@id='link']
ОсьШагОсьШаг

Префиксы

ПрефиксПримерЗначение
////hr[@class='edge']Где угодно
././aОтносительный
//html/body/divКорень

Начинать выражение можно с любого из этих префиксов.

Оси

ОсьПримерЗначение
///ul/li/aДочерний
////[@id="list"]//aПотомок

Разделяйте шаги с помощью /. Используйте //, если не нужны только прямые дети.

Шаги

//div
//div[@name='box']
//[@id='link']

Шаг может иметь имя элемента (div) и предикаты ([...]). Оба необязательны. Также можно использовать:

//a/text()     #=> "Go home"
//a/@href      #=> "index.html"
//a/*          #=> All a's child elements

Предикаты

Предикаты

//div[true()]
//div[@class="head"]
//div[@class="head"][@id="top"]

Ограничивают набор узлов, если условие истинно. Предикаты можно цепочить.

Операторы

# Comparison
//a[@id = "xyz"]
//a[@id != "xyz"]
//a[@price > 25]
# Logic (and/or)
//div[@id="head" and position()=2]
//div[(x and y) or not(z)]

Используйте сравнение и логические операторы для условий.

Использование узлов

# Use them inside functions
//ul[count(li) > 2]
//ul[count(li[@class='hide']) > 0]
# This returns `<ul>` that has a `<li>` child
//ul[li]

Узлы можно использовать внутри предикатов.

Индексация

//a[1]                  # first <a>
//a[last()]             # last <a>
//ol/li[2]              # second <li>
//ol/li[position()=2]   # same as above
//ol/li[position()>1]   # :not(:first-of-type)

Используйте [] с числом, last() или position().

Порядок цепочек

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

Порядок важен: эти выражения разные.

Вложенные предикаты

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

Возвращает <section>, если внутри есть потомок <h1> с id='hi'.

Функции

Функции узлов

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

Булевы функции

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

Строковые функции

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

Преобразование типов

string()
number()
boolean()

Оси

Использование осей

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

Шаги обычно разделяются / и выбирают детей, но можно указать другую ось через ::.

//ul/child::li
ОсьШагОсьШаг

Дочерняя ось

# both the same
//ul/li/a
//child::ul/child::li/child::a

child:: — ось по умолчанию. Поэтому //a/b/c работает.

# both the same
# this works because `child::li` is truthy, so the predicate succeeds
//ul[li]
//ul[child::li]
# both the same
//ul[count(li) > 2]
//ul[count(child::li) > 2]

Ось descendant-or-self

# both the same
//div//h4
//div/descendant-or-self::h4

// — сокращение для оси descendant-or-self::.

# both the same
//ul//[last()]
//ul/descendant-or-self::[last()]

Другие оси

ОсьСокрПримечания
ancestor
ancestor-or-self
attribute@@href — сокращение attribute::href
childdiv — сокращение child::div
descendant
descendant-or-self//// — сокращение /descendant-or-self::node()/
namespace
self.. — сокращение self::node()
parent.... — сокращение parent::node()
following
following-sibling
preceding
preceding-sibling

Есть и другие оси.

Объединения

//a | //span

| объединяет два выражения.

Больше примеров

Примеры

//*                 # all elements
count(//*)          # count all elements
(//h1)[1]/text()    # text of the first h1 heading
//li[span]          # find a <li> with an <span> inside it
                    # ...expands to //li[child::span]
//ul/li/..          # use .. to select a parent

Найти родителя

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

Находит <section>, который напрямую содержит h1#section-name.

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

Находит <section>, содержащий h1#section-name. (То же самое, но с descendant-or-self вместо child)

Closest

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

Похоже на $().closest('.box') в jQuery.

Атрибуты

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

Находит <item> и проверяет его атрибуты.

Тестирование

Консоль браузера

$x("//div")