作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个不同变量的 AND 和 OR 串联。我尝试了以下方法:
<xsl:if test="$countryCode = '104'
and
(transactionType != 'Allowance'
or
revenueCenter != '1100')">
<xsl:if test="$countryCode='104'>
<xsl:if transactionType!='Allowance' or revenueCenter!='1100'>
最佳答案
XPath 表达式 :
$countryCode='104'
and
(transactionType!='Allowance' or revenueCenter!='1100')
!=
运算符(operator),除非真的有必要 -- 当参数之一是节点集(或 XPath 2.0 中的序列或节点集)时,它的使用与大多数人的期望相差甚远。
!=
更好地使用功能
not()
:
$countryCode='104'
and
(not(transactionType='Allowance') or not(revenueCenter='1100'))
$countryCode='104'
and
not(transactionType='Allowance' and revenueCenter='1100')
关于xslt - 条件 AND OR 两个不同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5458959/
我是一名优秀的程序员,十分优秀!