1<td value="10"></td>
我只会给innerText赋值。
1<td><xsl:value-of select="name"></xsl:value-of></td>
---------------------------------------------------------------
1<td value="{name}"></td>
或者
1<td><xsl:attribute name="value"><xsl:value-of select="name"></xsl:value-of></xsl:attribute></td>
---------------------------------------------------------------
1<xsl:attribute name=""></xsl:attribute>