我有一种情况,我必须根据变量的内容进行排序。
在 XSLT 2.0 中,我这样做:
<xsl:sort select="
if ($column = 'name') then name
else if ($column = 'score') then count(//scores/score[@id=current()/@id])
else if ($column = 'rating) then count(//ratings/rating[@id=current()/@id])
else name"
order={$sort}" />
但我需要为 1.0 版做,我找不到替代品。我应该怎么做?