English | Français | Deutsch | >> Magyar << | 中文 | Polski | adultinternetusers > Tutorials > XSLT Tutorial |
Bevezetés / Keresés / adultinternetusers |
>> Oldal 17 << | Előző | Következő | Tartalom | Elem index |
XML forrás <source> <AAA id="a1" pos="start"> <BBB id="b1"/> <BBB id="b2"/> </AAA> <AAA id="a2"> <BBB id="b3"/> <BBB id="b4"/> <CCC id="c1"> <CCC id="c2"/> </CCC> <BBB id="b5"> <CCC id="c3"/> </BBB> </AAA> </source> Kimenet <H3>AAAa1</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>child::BBB/attribute::id</TD> <TD>BBB/@id</TD> </TR> <TR> <TD>b1</TD> <TD>b1</TD> </TR> </TABLE> <H3>AAAa2</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>child::BBB/attribute::id</TD> <TD>BBB/@id</TD> </TR> <TR> <TD>b3</TD> <TD>b3</TD> </TR> </TABLE> HTML nézet AAAa1
AAAa2
| XSLT stíluslap <xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="AAA"> <H3> <xsl:value-of select="name()"/> <xsl:text/> <xsl:value-of select="@id"/> </H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD> <xsl:text>child::BBB/attribute::id</xsl:text> </TD> <TD> <xsl:text>BBB/@id</xsl:text> </TD> </TR> <TR> <TD> <xsl:value-of select="child::BBB/attribute::id"/> </TD> <TD> <xsl:value-of select="BBB/@id"/> </TD> </TR> </TABLE> </xsl:template> </xsl:stylesheet> |
XML forrás <source> <AAA id="a1" pos="start"> <BBB id="b1"/> <BBB id="b2"/> </AAA> <AAA id="a2"> <BBB id="b3"/> <BBB id="b4"/> <CCC id="c1"> <CCC id="c2"/> </CCC> <BBB id="b5"> <CCC id="c3"/> </BBB> </AAA> </source> Kimenet <H3>BBBb1</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a1</TD> <TD>a1</TD> </TR> </TABLE> <H3>BBBb2</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a1</TD> <TD>a1</TD> </TR> </TABLE> <H3>BBBb3</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a2</TD> <TD>a2</TD> </TR> </TABLE> <H3>BBBb4</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a2</TD> <TD>a2</TD> </TR> </TABLE> <H3>BBBb5</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a2</TD> <TD>a2</TD> </TR> </TABLE> HTML nézet BBBb1
BBBb2
BBBb3
BBBb4
BBBb5
| XSLT stíluslap <xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="BBB"> <H3> <xsl:value-of select="name()"/> <xsl:text/> <xsl:value-of select="@id"/> </H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD> <xsl:text>parent::*/attribute::id</xsl:text> </TD> <TD> <xsl:text>../@id</xsl:text> </TD> </TR> <TR> <TD> <xsl:value-of select="parent::*/attribute::id"/> </TD> <TD> <xsl:value-of select="../@id"/> </TD> </TR> </TABLE> </xsl:template> </xsl:stylesheet> |
XML forrás <source> <AAA id="a1" pos="start"> <BBB id="b1"/> <BBB id="b2"/> </AAA> <AAA id="a2"> <BBB id="b3"/> <BBB id="b4"/> <CCC id="c1"> <CCC id="c2"/> </CCC> <BBB id="b5"> <CCC id="c3"/> </BBB> </AAA> </source> Kimenet <H3>CCCc1</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>name(/descendant-or-self::*)</TD> <TD>name(//*)</TD> </TR> <TR> <TD>source</TD> <TD>source</TD> </TR> </TABLE> <H3>CCCc2</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>name(/descendant-or-self::*)</TD> <TD>name(//*)</TD> </TR> <TR> <TD>source</TD> <TD>source</TD> </TR> </TABLE> <H3>CCCc3</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>name(/descendant-or-self::*)</TD> <TD>name(//*)</TD> </TR> <TR> <TD>source</TD> <TD>source</TD> </TR> </TABLE> HTML nézet CCCc1
CCCc2
CCCc3
| XSLT stíluslap <xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="CCC"> <H3> <xsl:value-of select="name()"/> <xsl:text/> <xsl:value-of select="@id"/> </H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD> <xsl:text>name(/descendant-or-self::*)</xsl:text> </TD> <TD> <xsl:text>name(//*)</xsl:text> </TD> </TR> <TR> <TD> <xsl:value-of select="name(/descendant-or-self::*)"/> </TD> <TD> <xsl:value-of select="name(//*)"/> </TD> </TR> </TABLE> <xsl:apply-templates/> </xsl:template> </xsl:stylesheet> |
Take a moment to visit 1cecilia448 or see them on twitter at 1cecilia448 or view them on facebook at 1cecilia448.
You can also get Organic Skin Care products from Bliss Bath Body and you must check out their Natural Body Lotions and bath soaps
Now if you are looking for the best deals on surf clothing from Quiksilver and Roxy then you have to check these amazing deals here:
Hey, check out this Organic Skin Care European Soaps along with Natural Lavender Body Lotion and shea butter
and we can get surf t shirts surfing shirt and And you must check out this website swim suit swimming suit and swim trunks