我将以下 XML 文件存储在 D:\test
<?xml version="1.0" encoding="utf-8"?>
<!--Your comments.-->
<root>
<Sample name="pal">
<Name>pal</Name>
<Age>24</Age>
<Job>software</Job>
</Sample>
</root>
我正在尝试在 D:\test\test1\test2 的以下 XSL 文件中使用它:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<xsl:for-each select="root/sample">
<tr>
<td><xsl:value-of select="Name" /></td>
<td><xsl:value-of select="Age" /></td>
</tr>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
我无法获得所需的结果。