0

Ia 使用 XSLT 1.0,我确实有一个 XML,而看起来像这样

<item name="note"><value>&lt;p&gt;Add the &amp;lt;bean&amp;gt; tag pased below to the &amp;lt;beans&amp;gt; element in this file .... </value></item> 

我想在 HTML 中这样显示

Add the <bean> tag passed below to the <beans> element in this file. 

请注意,当我使用 disable-output-escaping=yes 时,<p> 将被转换为段落标签。

这就是我的 xslt

<xsl:template match="item[@name='note']">
    <xsl:value-of select="value" disable-output-escaping="yes" />
</xsl:template>

使用此 xslt,它会忽略 bean 和 beans xml,并且不会显示在页面中。如何确保以我想要的方式显示它?

4

1 回答 1

0

问题是您的某些实体已被“双重转义”。
&amp;lt;bean&amp;gt;应该&lt;bean&gt;

于 2012-08-16T01:21:35.987 回答