我想将此用于逻辑。我的逻辑是If the wind speed is >4 and ≤15, then use the graphic
。如何为>4 and ≤15
使用xslt。
尝试的代码:
<xsl:when test="td[7] > 4 -and- td[7] ">
我正在使用XSLT 2.0
答案 0 :(得分:2)
使用<
和>
代替<
和>
...
<xsl:when test="td[7] > 4 and td[7] <= 15">...</xsl:when>
注意如何将=
放在<
之后,以复制<=
根据@TimC的评论,您唯一要逃脱的是<
至<
。
>
可以保留不变,但是我希望两者都保持一致。
根据@MichaelKay的评论,XPath 2.0允许您仅使用lt
和gt
...
<xsl:when test="td[7] gt 4 and td[7] lt= 15">...</xsl:when>
他还指出了另一种写同一件事的方式,但仍然使用>
...
<xsl:when test="15 >= td[7] and td[7] > 4">...</xsl:when>