我正在研究一个xslt来迭代一个节点集。 迭代工作正常,但它的类型是转换为字符串。我该怎么办?
<xsl:for each select =" ext:node-set($References) ">
<test><xsl:value-of select="."></test>
</xsl:for-each >
如何在测试代码中以字符串格式获取每个项目的值?
答案 0 :(得分:0)
如果您想要节点而不是字符串值,请使用copy-of
:
<xsl:for each select =" ext:node-set($References) ">
<test><xsl:copy-of select="."></test>
</xsl:for-each >