我想知道,是否有任何方法可以在XSLT 1.0中進行隨機排序?在xslt 1.0中隨機排序?
這裏是我的XML
<root><DO status="a">text comes here</DO><DO status="b">text comes here</DO><DO status="c">text comes here</DO><DO status="d">text comes here</DO><DO status="e">text comes here</DO></root>
所需的輸出:
<root><DO status="c">text</DO><DO status="a">text comes here</DO><DO status="b">text comes here</DO><DO status="e">text comes here</DO><DO status="d">text comes here</DO></root>
希望我的問題是清楚了嗎?
在此先感謝