XSL初级问题:并集怎么写
比如 X>0并且 x>5 怎么连
[解决办法]
http://msdn.microsoft.com/zh-cn/library/ms256081%28VS.80%29.aspx
test="X >0 and x >5"
[解决办法]
- XML code
<xsl:if test="X gt; 0 and X lt; 5"> </xsl:if>
发布时间: 2012-02-24 16:30:38 作者: rapoo
XSL初级问题:并集怎么写
比如 X>0并且 x>5 怎么连
[解决办法]
http://msdn.microsoft.com/zh-cn/library/ms256081%28VS.80%29.aspx
test="X >0 and x >5"
[解决办法]
<xsl:if test="X gt; 0 and X lt; 5"> </xsl:if>