xsl怎样取xml里的前n个节点?<xsl:for-each select= "item "> 是遍历所有item节点,但我只想取前10个,有什么办法? [解决办法] <xsl:for-each select= "item[position() < 11] ">