0

我的架构是:

<xsl:stylesheet version="2.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:datetime="http://exslt.org/dates-and-times" xmlns:fn="http://www.w3.org/2005/xpath-functions">

我正在尝试获取两个日期之间的差异。

没有线索。

4

1 回答 1

3

获取日期差异的示例是:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema">

 <xsl:param name="currentDate" select="current-date()"/>
  <xsl:param name="yesterdayDate" select="'2013-05-12'"/>

  <xsl:template match="/">
    <xsl:value-of select="$currentDate - xs:date($yesterdayDate)"/><!-- Result in duration  -->
  </xsl:template>

</xsl:stylesheet>
于 2013-05-13T12:30:05.930 回答