- XPath 教程
- XPath - 主页
- XPath - 概述
- XPath - 表达式
- XPath - 节点
- XPath - 绝对路径
- XPath - 相对路径
- XPath - 轴
- XPath - 运算符
- XPath - 通配符
- XPath - 谓词
- XPath 有用资源
- XPath - 快速指南
- XPath - 有用资源
- XPath - 讨论
XPath - 表达式
XPath 表达式通常定义一个模式来选择一组节点。这些模式由 XSLT 使用来执行转换,或由 XPointer 使用来定位。
XPath 规范指定可作为 XPath 表达式执行结果的七种类型的节点。
- 根
- 元素
- 文本
- 属性
- 注释
- 处理指令
- 命名空间
XPath 使用路径表达式从 XML 文档中选择节点或节点列表。
以下是用于从 XML 文档中选择任何节点/节点列表的有用路径和表达式的列表。
| 序列号。 | 表达式和描述 |
|---|---|
| 1 | node 名字 选择给定名称“node 名字”的所有节点 |
| 2 | / 选择从根节点开始 |
| 3 | // 选择从与选择匹配的当前节点开始 |
| 4 | . 选择当前节点 |
| 5 | .. 选择当前节点的父节点 |
| 6 | @ 选择属性 |
| 7 | student 示例 - 选择名称为“student”的所有节点 |
| 8 | class/student 示例 - 选择所有 class 的子级的 student 元素 |
| 9 | //student 无论它们在文档中的什么位置,选择所有 student 元素 |
示例
在此示例中,我们创建了一个示例 XML 文档 students.xml 及其样式表文档 **students.xsl**,它使用各种 XSL 标记的 **select** 属性下的 XPath 表达式来获取每个 student 节点的学号、名字、姓氏、昵称和成绩的值。
students.xml
<?xml version = "1.0"?>
<?xml-stylesheet type = "text/xsl" href = "students.xsl"?>
<class>
<student rollno = "393">
<firstname>Dinkar</firstname>
<lastname>Kad</lastname>
<nickname>Dinkar</nickname>
<marks>85</marks>
</student>
<student rollno = "493">
<firstname>Vaneet</firstname>
<lastname>Gupta</lastname>
<nickname>Vinni</nickname>
<marks>95</marks>
</student>
<student rollno = "593">
<firstname>Jasvir</firstname>
<lastname>Singh</lastname>
<nickname>Jazz</nickname>
<marks>90</marks>
</student>
</class>
students.xsl
<?xml version = "1.0" encoding = "UTF-8"?>
<xsl:stylesheet version = "1.0"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform">
<xsl:template match = "/">
<html>
<body>
<h2>Students</h2>
<table border = "1">
<tr bgcolor = "#9acd32">
<th>Roll No</th>
<th>First Name</th>
<th>Last Name</th>
<th>Nick Name</th>
<th>Marks</th>
</tr>
<xsl:for-each select = "class/student">
<tr>
<td> <xsl:value-of select = "@rollno"/></td>
<td><xsl:value-of select = "firstname"/></td>
<td><xsl:value-of select = "lastname"/></td>
<td><xsl:value-of select = "nickname"/></td>
<td><xsl:value-of select = "marks"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
验证输出
广告