XSL基础教程(一): http://www-128.ibm.com/developerworks/cn/xml/ccidnet/xslfund/index1.html
XSL基础教程(二): http://www.ibm.com/developerworks/cn/xml/ccidnet/xslfund/index2.html
XSL基础教程(三): http://www.ibm.com/developerworks/cn/xml/ccidnet/xslfund/index3.html
注:
教程三中的order-by是过时的、不推荐使用的属性, 要排序的话,用<xsl:sort select="name"/>. 如果非要用的话,必须要声明本XSLT的名称空间为 http://www.w3.org/TR/WD-xsl 也就是把<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/REC-html40"> 改为
<xsl:stylesheet version="1.0" xmlns:xsl=" http://www.w3.org/TR/WD-xsl"
xmlns="http://www.w3.org/TR/REC-html40">