我想复制并替换 xlst 中的值,但我得到一个空白值
<xsl:template match="/Tests/test/comment">
<xsl:copy>
<xsl:value-of select="NEW"/>
</xsl:copy>
</xsl:template>
我明白了
<comment></comment>
我想要
<comment>NEW</comment>
我想复制并替换 xlst 中的值,但我得到一个空白值
<xsl:template match="/Tests/test/comment">
<xsl:copy>
<xsl:value-of select="NEW"/>
</xsl:copy>
</xsl:template>
我明白了
<comment></comment>
我想要
<comment>NEW</comment>