确定 XSLT 中的一个节点是否包含在另一个节点内

发布于 2024-09-11 19:40:14 字数 478 浏览 7 评论 0原文

是否可以判断 XSLT 中的一个节点是否包含在(或等于)另一个节点中?例如,考虑以下代码片段:

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

是否可以判断 itemSection 是否包含在(或等于)enemyListSection 中?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只有影子陪我不离不弃 2024-09-18 19:40:14

在 XPath 1.0 中

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

在 XPath 2.0 中

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

In XPath 1.0

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

In XPath 2.0

$itemSection[ancestor::*[. is $enemyListSection]]
葬心 2024-09-18 19:40:14

对 Alejandro 的答案进行一个小调整

在 XPath 1.0 中

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

在 XPath 2.0 中

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

因为原来的问题问:

是否可以判断
itemSection 包含在 (
等于
)敌人列表部分?

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文