和資料庫排序一樣,XSL/XSLT也可以實現隨機排序,原理也很簡單,以下就是程式碼。
<?xml version="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/" version="1.0"> <msxsl:script language="javaScript" implements-PRefix="eMeng"> function Random() { return 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:template> </xsl:stylesheet>
以上就是在 XSL/XSLT 中實現隨機排序的內容,更多相關內容請關注PHP中文網(www.php.cn)!