Remark : position() 순번 보이기
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<?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> <xsl:apply-templates/> </body> </html> </xsl:template> <xsl:template match="select"> <xsl:apply-templates/> </xsl:template> <xsl:template match="a"> <xsl:value-of select="position()"/>.탑승객<br/> <xsl:apply-templates/> </xsl:template> </xsl:stylesheet> |
1 2 3 4 5 |
1. 탑승객 2. 탑승객 3. 탑승객 |