我有一个包含新闻故事的XML文档,新闻故事的主体元素包含纯文本中的p个标签.当我使用XSL检索身体时,例如
<xsl:value-of select="body" />
p标签似乎被剥夺了.我正在使用Visual Studio 2005的XSL实现.
有没有人有什么想法如何避免这个?谢谢.
尝试使用
原文链接:https://www.f2er.com/xml/292917.html<xsl:copy-of select="body"/>
代替.从w3schools’ documentation on same:
The
<xsl:copy-of>
element creates a
copy of the current node.Note: Namespace nodes,child nodes,and attributes of the current node are automatically copied as well!