bonjour
comment on peut utiliser des "and" et "or" dans des conditions de xsl??
<xsl:if test="plusieurs conditions">
j'ai trouvé cette explication dans le site de W3C...
Booleans
An object of type boolean can have one of two values, true and false.
An or expression is evaluated by evaluating each operand and converting its value to a boolean as if by a call to the boolean function. The result is true if either value is true and false otherwise. The right operand is not evaluated if the left operand evaluates to true.
An and expression is evaluated by evaluating each operand and converting its value to a boolean as if by a call to the boolean function. The result is true if both values are true and false otherwise. The right operand is not evaluated if the left operand evaluates to false.
mais je ne comprends toujours pas comment faire
Partager