匹配特定父元素的多个元素名称

  • 本文关键字:元素 xslt xpath xslt-1.0
  • 更新时间 :
  • 英文 :


我习惯于像这样匹配多个元素:

<xsl:template match="horse | sheep | pig | cow | dog">

但是我怎样才能将其限制为作为给定父类型的子元素。例如,它将匹配:

<animals>
 <horse .../>
 <sheep .../>
</animals>

但不匹配:

<pets>
 <horse .../>
 <dog .../>
</pets>
您需要

将其拼写为<xsl:template match="animals/horse | animals/sheep | animals/pig | animals/cow | animals/dog"> .

相关内容

  • 没有找到相关文章

最新更新