怎样指定用调用模板生成的表格的id呢?多谢!
例如:
<xsl:for-each select="Record">
<xsl:apply-templates select="SchemaSet"/>
</xsl:for-each>
<xsl:template match="SchemaSet">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="font" id="表格名称(第一个表格是tab01,以后类推?)">
<xsl:for-each select="Schema">
<tr>
<td/>
</tr>
</xsl:for-each>
</table>
</xsl:template>