📜  XSLT元素

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

XSLT元件

XSLT 元素用于提取所选节点的值。它将根据XPath表达式将所选节点的值放入文本中。


 

参数说明

Index Name Description
1) select It specifies the XPpath expression to be evaluated in current context.
2) disable-outputescaping Default-“no”. If “yes”, output text will not escape XML characters from text.

XSLT元素示例

让我们来看一个示例,以了解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

输出: