Remark : 반복노드 데이타 보여주기
1 2 3 4 5 6 7 8 9 10 |
<xsl:for-each select="./*[local-name()='AirPricingInfo']/*[local-name()='PassengerType']"> <xsl:value-of select='@Code'/> </xsl:for-each> ADT ADT CHD |
Remark : 반복노드 데이타 보여주기
1 2 3 4 5 6 7 8 9 10 |
<xsl:for-each select="./*[local-name()='AirPricingInfo']/*[local-name()='PassengerType']"> <xsl:value-of select='@Code'/> </xsl:for-each> ADT ADT CHD |