标签: xslt
这是我的代码:
<xsl:for-each select="/*/articles/article"> <xsl:if test="(pos() mod 5)"> // display some html here </xsl:if> </xsl:for-each>
似乎不起作用。该页面刚刚挂起。不太确定什么是错的
答案 0 :(得分:0)
XPath定义了一个名为position()的函数,但没有一个名为pos()的函数。
position()
pos()