2017-03-28 13 views
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> 

答えて

2

は、私はあなたの意味だと思う

<xsl:attribute name="select"> 
    <xsl:value-of select="concat('/root/child[@myattr1=',$myVar1,']/@value')"/> 
</xsl:attribute> 
関連する問題