1

我有一个像prd.xml这样的xml

  <product>
<text>Some Text</text>
    <name>Pname</name>
    <category extra="category"> Test</category>
    </product>

我想使用 xslt 从 xml 中获取类别。

我试过了

<xsl:variable name="p" select="prd.xml"/>

<xsl:value-of select ="$p/product/category"/>

但我无法得到结果。有人帮忙解决吗?

4

1 回答 1

1
 select="prd.xml"

选择一个不存在的元素prd.xml,你想要

select="document('prd.xml')"
于 2013-06-17T10:04:11.233 回答