3

我对 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>!!!

4

1 回答 1

6

你可以使用

<xsl:copy-of select="node/node()" />

它看起来有点奇怪,因为元素名称也是node,但是node()选择器所做的是从适当的节点(在这种情况下node,在当前上下文中调用的所有子元素)中选择所有子元素、文本节点、注释节点和处理指令元素)。

node()不选择属性,所以如果你开始

<parent>    
    <node attr="foo">Hello, I'm a <b>node</b>!!!</node>
</parent>

然后<td><xsl:copy-of select="node/node()"/></td>会产生

<td>Hello, I'm a <b>node</b>!!!</td>

相反,如果您说<td><xsl:copy-of select="node/node() | node/@*"/></td>,那么您会得到

<td attr="foo">Hello, I'm a <b>node</b>!!!</td>
于 2012-11-13T14:23:32.290 回答