XSLT日期比较不起作用

时间:2012-11-29 09:12:08

标签: xslt date-comparison

我正在尝试实现XSLT日期比较,但似乎不起作用,这是我的代码:

<xsl:variable name="CreatedDate" select="@createDate"/>
                <xsl:variable name="IDAppendedDate" select="2012-01-01" />

                 <b>date: <xsl:value-of select="$CreatedDate"/></b> 

                 <xsl:if test="$CreatedDate > $IDAppendedDate">
                   <h2> mooooooooooooo </h2>
                </xsl:if>

感谢

1 个答案:

答案 0 :(得分:1)

也许您可以将一些XSLT date/time function应用于您的IDAppendedDate而不是简单的字符串值。