如何理解这个代码块,
<xsl:for-each select="testsuite">
<xsl:apply-templates select="."/>
</xsl:for-each>
在下面使用,
<xsl:template match="testsuites">
<table border="1" width="100%">
<tr bgcolor="#9acd32">
<th align="left">module</th>
<th align="left">tests</th>
<th align="left">time</th>
</tr>
<tr>
<td><xsl:value-of select="@name"/></td>
<td><xsl:value-of select="@tests"/></td>
<td><xsl:value-of select="@time"/></td>
</tr>
</table>
<br/>
<xsl:for-each select="testsuite">
<xsl:apply-templates select="."/>
</xsl:for-each>
</xsl:template>
<xsl:apply-templates/>
根据上面的代码,应用的模板是什么?你能就这个问题提供任何线索吗?
我会高度评价你的帮助。