我想对符合“A”或“B”的元素执行一系列操作。我正在考虑下面这样的东西,但不行。
<xsl:template match= " 'A' or 'B'" > <!-- whatever I want to do here --> </xsl:template>
找不到适合的XSLT语言参考。请帮忙!谢谢!!
尝试这个:
原文链接:https://www.f2er.com/xml/293405.html<xsl:template match= "A | B" >