xsl模数问题不会在每个if子句中显示html

时间:2016-07-25 16:52:17

标签: xslt

这是我的代码:

<xsl:for-each select="/*/articles/article">
     <xsl:if test="(pos() mod 5)">
         // display some html here
      </xsl:if>
</xsl:for-each>

似乎不起作用。该页面刚刚挂起。不太确定什么是错的

1 个答案:

答案 0 :(得分:0)

XPath定义了一个名为position()的函数,但没有一个名为pos()的函数。