如何通过XSLT转换设置一个指向链接的链接和具有链接的文本的href?这是我到目前为止,这给我的错误“xsl:value-of不能是xsl:text元素的子元素”:
<xsl:element name="a"> <xsl:attribute name="href"> <xsl:value-of select="actionUrl"/> </xsl:attribute> <xsl:text><xsl:value-of select="actionUrl"/></xsl:text> </xsl:element>
< xsl:text>定义XSL文档中的文本段。只有真实的纯文本可以在这里,而不是XML节点。您只需要< xsl:value-of select =“actionUrl”/> ;,它将打印文本。
原文链接:https://www.f2er.com/xml/293533.html<xsl:element name="a"> <xsl:attribute name="href"> <xsl:value-of select="actionUrl"/> </xsl:attribute> <xsl:value-of select="actionUrl"/> </xsl:element>