我对 xsl:copy-of 有点问题,因为我只想复制节点的内容,而不是节点本身:
在 XML 中:
<parent>
<node>Hello, I'm a <b>node</b>!!!</node>
</parent>
在 XSL 中:
<xsl:template match="parent">
<tr>
<td><xsl:copy-of select="node"/></td>
</tr>
</xsl:template>
结果:
<tr>
<td><node>Hello, I'm a <b>node</b>!!!</node></td>
</tr>
预期结果:
<tr>
<td>Hello, I'm a <b>node</b>!!!</td>
</tr>
问题是,如果我使用xsl:value-of
,我会丢失<b></b>
!!!