gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 16:15:49 25 4
gpt4 key购买 nike

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

<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">

关于xslt - 匹配特定父元素的多个元素名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38377948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com