我有一个XSL,希望在其中显示默认的到期日期(现在+1个月)
我可以用这个显示当前日期(使用:xmlns:date=“http://exslt.org/dates-and-times”扩展元素prefixes=“date”)。
<xsl:variable name="currentdate" select="date:date()"/> <!-- add one month to $currentdate--> <xsl:value-of select="date:format-date($currentdate, 'MM/yy')"/>
我现在遇到的问题是,我似乎还没有到目前为止的某个时间段。有人知道怎么做吗?
看来你错过了 EXSLT - date:add .