Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些这样的 XML:
<div id="clr-4930">Content here</div>
我需要把它变成这个
<div id="clr-4930"><p>Content here</p></div>
每个 div 的 id 属性值会有所不同。我可以使用一个简单的转换来实现这一点吗?我正在使用 Oxygen XML 编辑器。非常感谢您的帮助!
您可以将其用作简单的转换
<xsl:template match="div"> <xsl:copy> <xsl:copy-of select="@*"/> <p> <xsl:apply-templates/> </p> </xsl:copy> </xsl:template>