Xpath 简明教程

XPath - Axes

由于位置路径使用绝对或相对路径定义节点的位置,因此轴用于按其关系(如 parent, child, sibling, 等)识别元素。之所以这样命名轴,是因为它们引用元素相对于某个元素所在的轴。

以下是各种轴值的列表。

S.No.

Axis & Description

1

ancestor 表示当前节点的祖先,其中包括直到根节点的父节点。

2

ancestor-or-self 表示当前节点及其祖先。

3

attribute 表示当前节点的属性。

4

child 表示当前节点的子代。

5

descendant 表示当前节点的后代。后代包括从该节点到叶节点(没有更多子代)的所有子代。

6

descendant-or-self 表示当前节点及其后代。

7

following 表示当前节点之后的所有节点。

8

following-sibling 表示上下文节点后面的所有兄弟节点。兄弟节点与当前节点处于同一级别,且共享其父级。

9

namespace 表示当前节点的命名空间。

10

parent 表示当前节点的父级。

11

preceding 表示当前节点之前的所有节点(即在它的起始标签之前)。

12

self Represents the current node.

以下是轴使用的一些示例。

firstname − 选择与学生节点相关的 firstName。

<p><xsl:value-of select = "firstname"/></p>
<xsl:value-of select = "/class/student/preceding-sibling::comment()"/>

Example

在此示例中,我们创建了一个 XML 文档示例 students.xml 和使用 XPath 表达式的样式表文档 students.xsl

下面是使用的 XML 示例。

students.xml

<?xml version = "1.0"?>
<?xml-stylesheet type = "text/xsl" href = "students.xsl"?>
<class>
   <!-- Comment: This is a list of student -->
   <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>
            <xsl:value-of select = "/class/student/preceding-sibling::comment()"/>
            <br/>
            <xsl:text>First Student: </xsl:text>
            <xsl:value-of select = "/class/student/child::firstname" />
         </body>
      </html>
   </xsl:template>
</xsl:stylesheet>

Verify the output

xpath axes