English | Français | Deutsch | >> Magyar << | 中文 | Polski | ZVON > Tutorials > XSLT Tutorial |
Bevezetés / Keresés / ZVON |
>> Oldal 59 << | Előző | Következő | Tartalom | Elem index |
XML forrás
<source> <h1> XML output </h1> <hr/> </source> Kimenet
<h1> XML output </h1> <hr/> HTML nézet
XML output |
XSLT stíluslap
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="/"> <xsl:copy-of select="/source/*"/> </xsl:template> </xsl:stylesheet> |
XML forrás
<source> <h1> XML output </h1> <hr/> </source> Kimenet
<html> <h1> XML output </h1> <hr> </html> HTML nézet
XML output |
XSLT stíluslap
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="/"> <html> <xsl:copy-of select="/source/*"/> </html> </xsl:template> </xsl:stylesheet> |