online attribute xslt xpath

xslt - attribute - xpath selenium



Cómo leer el atributo de un nodo primario desde un nodo secundario en XSLT (1)

Solo quiero saber cómo leer un atributo de un nodo primario desde un nodo secundario en XSLT. código:

<A> <b attr1="xx"> <c> </c> </b> </A>

XSLT:

<xsl:template match="c"> <xsl:value-of select="attribute of b node"> </xsl:template>


Puede subir un nivel usando " .. ". Asi que:

<xsl:value-of select="../@attr1"/>