XSLT <import>
Il tag <xsl: import> importa il contenuto di un foglio di stile in un altro. L'importazione di un foglio di stile ha una precedenza maggiore rispetto al foglio di stile importato.
Dichiarazione
Di seguito è riportata la dichiarazione della sintassi di <xsl:import> elemento.
<xsl:import href = "uri">
</xsl:import>
Attributi
Suor n | Nome e descrizione |
---|---|
1. | href utilizzato per passare il percorso del foglio di stile xslt da importare . |
Elementi
Number of occurrences | Illimitato |
Parent elements | xsl: stylesheet, xsl: transform |
Child elements | nessuna |
Esempio demo
Questo esempio crea un elenco di elementi <student> con il relativo attributo rollnoe il suo figlio <firstname>, <lastname>, <nickname> e <marks> iterando su ogni studente. Qui abbiamo creato due fogli di stile xsl dove il foglio di stile students_imports.xsl importa students.xsl e lo students.xml è collegato a students_imports.xsl.
students.xml
<?xml version = "1.0"?>
<?xml-stylesheet type = "text/xsl" href = "students_imports.xsl"?>
<class>
<student rollno = "393">
<firstname>Dinkar</firstname>
<lastname>Kad</lastname>
<nickname>Dinkar</nickname>
<marks>85</marks>
</student>
<student rollno = "493">
<firstname>Vaneet</firstname>
<lastname>Gupta</lastname>
<nickname>Vinni</nickname>
<marks>95</marks>
</student>
<student rollno = "593">
<firstname>Jasvir</firstname>
<lastname>Singh</lastname>
<nickname>Jazz</nickname>
<marks>90</marks>
</student>
</class>
students.xsl
<?xml version = "1.0" encoding = "UTF-8"?>
<xsl:stylesheet version = "1.0"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform">
<xsl:template match = "/">
<html>
<body>
<h2>Students</h2>
<table border = "1">
<tr bgcolor = "#9acd32">
<th>Roll No</th>
<th>First Name</th>
<th>Last Name</th>
<th>Nick Name</th>
<th>Marks</th>
</tr>
<xsl:for-each select = "class/student">
<tr>
<td><xsl:value-of select = "@rollno"/></td>
<td><xsl:value-of select = "firstname"/></td>
<td><xsl:value-of select = "lastname"/></td>
<td><xsl:value-of select = "nickname"/></td>
<td><xsl:value-of select = "marks"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
students_imports.xsl
<?xml version = "1.0" encoding = "UTF-8"?>
<xsl:stylesheet version = "1.0"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform">
<xsl:import href = "students.xsl"/>
<xsl:template match = "/">
<xsl:apply-imports/>
</xsl:template>
</xsl:stylesheet>