📜  XSLT元素

📅  最后修改于: 2020-12-26 06:44:36             🧑  作者: Mango

XSLT元件

XSLT 元素用于在节点上指定排序条件。它以排序形式显示输出。

在XSL文件的元素内添加了元素,以对输出进行排序。

 
 

参数说明

Index Name Description
1) select It is used for sorting key of the node.
2) lang It specifies language alphabet used to determine sort order.
3) data-type It specifies data-type of the text.
4) order It is used to specify the sorting order. By default sorting order is ascending order.
5) case-order It is used to specify sorting order of string by capitalization. Default is “upper-first”.

XSLT元素示例

让我们以创建一个元素表为例,该表的属性为“ id”,其子元素遍历每个学生,并按姓氏对其进行排序。

Employee.xml


 
 
   
      Aryan 
      Gupta 
      Raju 
      30000
    
    
      Sara 
      Khan 
      Zoya 
      25000
    
    
      Peter 
      Symon 
      John 
      10000 
    

员工.xsl


   
    
       
          
            

Employee

ID First Name Last Name Nick Name Salary

输出:

注意:上表按姓氏排序。