format-number,返回一位小数xslt

<xsl:variable name="dis">
  <xsl:if test="number(Dis/@v)=0">1米</xsl:if>
  <xsl:if test="number(Dis/@v)>0 and number(Dis/@v)>1000"><xsl:value-of select="format-number((number(Dis/@v) div 1000),'#.0')"/>公里</xsl:if>
  <xsl:if test="number(Dis/@v)&gt;0 and number(Dis/@v)&lt;1000"><xsl:value-of select="number(Dis/@v)"/>米</xsl:if>
 </xsl:variable>
 <!-- 名称(截取11) -->
 <xsl:variable name="neaNa">
  <xsl:if test="string-length(Na/@v)>11"><xsl:value-of select="substring(Na/@v,0,10)"/>...</xsl:if>
  <xsl:if test="not(string-length(Na/@v)>11)"><xsl:value-of select="Na/@v"/></xsl:if>
 </xsl:variable>

 <tr height="15px"><td width="15px" align="right"><xsl:value-of select="position()"/>.</td><td><a href="{/Poi/@rootUrl}{LSID/@v}{/Poi/@fileType}" title="{Na/@v}" target="_blank" class="aLink"><xsl:value-of select="$neaNa"/></a></td><td align="right">约<xsl:value-of select="$dis"/></td></tr>
 

你可能感兴趣的:(Class,div,XSL,XSLT)