문제

Is it possible to tell whether a node is contained within (or equal to) another node in XSLT? For example, consider this code snippet:

<xsl:variable name="itemSection" select=".."/>
<xsl:for-each select="key('enemyItems', @key)">
    <xsl:variable name="enemyList" select="./attributes/@value"/>
    <xsl:variable name="enemyListSection" select="../../.."/>
                      .
                      .
                      .
</xsl:for-each>

Is it possible to tell whether itemSection is contained within (or equal to) enemyListSection?

도움이 되었습니까?

해결책

In XPath 1.0

$itemSection[ancestor::*[generate-id()=generate-id($enemyListSection)]]

In XPath 2.0

$itemSection[ancestor::*[. is $enemyListSection]]

다른 팁

Just a small adjustment to Alejandro's answer:

In XPath 1.0

$itemSection[ancestor-or-self::*[generate-id()=generate-id($enemyListSection)]] 

In XPath 2.0

$itemSection[ancestor-or-self::*[. is $enemyListSection]]

Because the original question asked:

Is it possible to tell whether itemSection is contained within (or equal to) enemyListSection?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top