1
myVar1変数をmyVar2内で使用するにはどうすればよいですか?私は新しいスタイルシートを生成するためにxsl変換を使用しています。.net環境でxslスタイルシートを生成するxslトランスフォーム
<xsl:element name="variable"><xsl:attribute name="myVar1">test value</xsl:attribute> </xsl:element>
<xsl:element name="variable">
<xsl:attribute name="myVar2" />
<xsl:element name="xsl:value-of">
<xsl:attribute name="select">
/root/child[@myattr1='$myVar1']/@value <!--Help here-->
</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:template>