这是我当前的xslt:
<xsl:when test="position()=10">
这有效,但我有100条记录,所以它只在第10条记录中生成我需要的html,仅此而已。
我现在需要的是一种动态的说法when is every ten positions
。我想你可以使用模数,但我很难让它工作。
我试过了:
<xsl:when test="position() mod 10">
不确定解决方案是什么。
答案 0 :(得分:0)
我想你想要<xsl:when test="position() mod 10 = 0">
。