Bảng tra nhanh XPath

Bộ chọn

Bộ chọn hậu duệ

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

Bộ chọn thuộc tính

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

Bộ chọn thứ tự

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"]

Anh em (siblings)

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()

Khác

CSSXpath?
h1:not([id])//h1[not(@id)]?
So khớp văn bản//button[text()="Submit"]?
So khớp (chuỗi con)//button[contains(text(),"Go")]
So sánh số//product[@price > 2.50]
Có con//ul[*]
Có con (cụ thể)//ul[li]
OR logic//a[@name or @href]?
Union (gộp kết quả)//a | //div?

Class check

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

Xpath không có toán tử “kiểm tra phần tử trong danh sách phân tách bằng khoảng trắng”, nên đây là cách thường dùng.

Biểu thức

Bước và trục

//ul/a[@id='link']
TrụcBướcTrụcBước

Tiền tố

Tiền tốVí dụÝ nghĩa
////hr[@class='edge']Bất kỳ đâu
././aTương đối
//html/body/divGốc

Bạn có thể bắt đầu biểu thức bằng bất kỳ tiền tố nào ở trên.

Trục

TrụcVí dụÝ nghĩa
///ul/li/aCon
////[@id="list"]//aHậu duệ

Tách các bước bằng /. Dùng // nếu không muốn chỉ chọn con trực tiếp.

Bước

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

Một bước có thể gồm tên phần tử (div) và mệnh đề ([...]). Cả hai đều có thể bỏ. Cũng có thể là:

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

Mệnh đề

Mệnh đề

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

Chỉ giữ nodeset khi điều kiện đúng. Có thể xếp chuỗi nhiều mệnh đề.

Toán tử

# 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)]

Dùng toán tử so sánh và logic để tạo điều kiện.

Dùng node

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

Có thể dùng node trực tiếp trong mệnh đề.

Đánh số

//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)

Dùng [] với số, last() hoặc position().

Thứ tự chaining

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

Thứ tự quan trọng; hai biểu thức này khác nhau.

Lồng mệnh đề

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

Trả về <section> nếu có hậu duệ <h1> với id='hi'.

Hàm

Hàm node

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]

Hàm bool

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

Hàm chuỗi

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()

Chuyển kiểu

string()
number()
boolean()

Trục

Dùng trục

//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')

Các bước thường dùng / để chọn con, nhưng có thể chỉ định trục khác với ::.

//ul/child::li
TrụcBướcTrụcBước

Trục child

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

child:: là trục mặc định. Vì vậy //a/b/c hoạt động.

# 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]

Trục descendant-or-self

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

// là dạng rút gọn của trục descendant-or-self::.

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

Các trục khác

TrụcViết tắtGhi chú
ancestor
ancestor-or-self
attribute@@href là viết tắt của attribute::href
childdiv là viết tắt của child::div
descendant
descendant-or-self//// là viết tắt của /descendant-or-self::node()/
namespace
self.. là viết tắt của self::node()
parent.... là viết tắt của parent::node()
following
following-sibling
preceding
preceding-sibling

Còn có nhiều trục khác có thể dùng.

Hợp

//a | //span

Dùng | để gộp hai biểu thức.

Ví dụ thêm

Ví dụ

//*                 # 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

Tìm phần tử cha

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

Tìm <section> chứa trực tiếp h1#section-name.

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

Tìm <section> chứa h1#section-name. (Giống ở trên, nhưng dùng descendant-or-self thay vì child)

Closest

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

Tương tự $().closest('.box') của jQuery.

Thuộc tính

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

Tìm <item> và kiểm tra thuộc tính.

Kiểm thử

Console trình duyệt

$x("//div")