我想选择<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>