Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 XSLT 中有两种情况:
<xsl:template match="/para/item"></xsl:template>
和
<xsl:template match="para/item"></xsl:template>
这两者有什么区别?
/para/item是一个绝对路径,它将匹配item文档根元素的所有子元素,前提是根元素被称为para,并且如果根元素具有不同的名称,则将不匹配任何内容。
/para/item
item
para
para/item是一个相对路径,因此它将匹配文档item中任何元素的所有子元素。para
para/item