データベースのソートと同様に、XSL/XSLT もランダムなソートを実装できます。その原理は次のとおりです。
<?xml バージョン="1.0"?>
<xsl:stylesheet xmlns:xsl=" http://www.w3.org/1999/XSL/Transform "
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:eMeng=" http://dotnet.aspx.cc/ "
バージョン="1.0">
<msxsl:script language="JavaScript"implements-prefix="eMeng">
関数ランダム() {
Math.random() を返します。
}
</msxsl:script>
<xsl:template match="/">
<xsl:for-each select="/*/node()">
<xsl:sort select="eMeng:Random()"/>
<xsl:value-of select="."/>
<br/>
</xsl:for-each>
</xsl:テンプレート>
</xsl:スタイルシート>