CSDN 论坛 XSL 中有一句不明白,求解!!!
在XSL样式表中显示发言内容的模板:
<xsl:template match="Content">
<table style="TABLE-LAYOUT: fixed" width="610" cellpadding="3">
<tr>
<td>
<xsl:element name="textarea">
<xsl:attribute name="class">content</xsl:attribute>
<xsl:attribute name="readonly">true</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</td>
</tr>
</table>
</xsl:template>
其它很好理解,但模板第八行:
<xsl:apply-templates />
就不理解了。这里使用的是什么模板?