如何在不使用类XSLT的情况下选择子标签

时间:2019-03-01 10:45:07

标签: xslt xslt-1.0

我想选择<a>,不带课程,然后将其更改为<span>

<p class="authors-note-content">
     <a href="http://eur-lex.europa.eu/" target="_blank">http://eur-lex.europa.eu/</a>
</p>

    <xsl:template match="*:a">
    <xsl:choose>
        <xsl:when test="$AUTHORS_NOTE_CONTENT_WITHOUT_LINK">
           <p class="authors-note-content">
                <span>
                    <xsl:apply-templates/>
                </span>
           </p>
        </xsl:when>
        <xsl:otherwise>
           <p class="authors-note-content">
                <xsl:apply-templates/>
           </p>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

0 个答案:

没有答案