xml – 如何保留标记标签?

前端之家收集整理的这篇文章主要介绍了xml – 如何保留标记标签?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个包含新闻故事的XML文档,新闻故事的主体元素包含纯文本中的p个标签.当我使用XSL检索身体时,例如
<xsl:value-of select="body" />

p标签似乎被剥夺了.我正在使用Visual Studio 2005的XSL实现.

有没有人有什么想法如何避免这个?谢谢.

尝试使用
<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!

原文链接:https://www.f2er.com/xml/292917.html

猜你在找的XML相关文章