gpt4 book ai didi

xslt - 你能在 xslt 测试属性中加入两个条件吗?

转载 作者:行者123 更新时间:2023-12-04 20:50:21 26 4
gpt4 key购买 nike

这是否适合 When 4 < 5 and 1 < 2 ?

<xsl:when test="4 &lt; 5 AND 1 &lt; 2" >
<!-- do something -->
</xsl:when>

最佳答案

不完全是,AND 必须是小写的。

<xsl:when test="4 &lt; 5 and 1 &lt; 2">
<!-- do something -->
</xsl:when>

关于xslt - 你能在 xslt 测试属性中加入两个条件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/318875/

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