我想对匹配名称A"或B"的元素执行一系列操作.我正在考虑下面这样的事情,但它不起作用.
I want to perform a series of operations on elements that matched the name "A" or "B". I'm thinking of something like this below, but it doesn't work.
<xsl:template match= " 'A' or 'B'" > <!-- whatever I want to do here --> </xsl:template>找不到合适的 XSLT 语言参考.请帮忙!谢谢!!
Couldn't find the appropriate XSLT language reference for it. Please help! Thanks!!
推荐答案试试这个:
<xsl:template match= "A | B" >有关详细信息,请参阅此页面.