以下の私のXSLTです:現在のノード変数の親ノード要素を取得する方法は?
<xsl:template match="/">
<xsl:call-template name="generateLinks">
<xsl:with-param name="currentPageBranchVariable" select="//Item[@CurrentPageBranch='true']"></xsl:with-param>
</xsl:call-template>
</xsl:template>
そして:
<xsl:template name="generateLinks">
<xsl:param name="currentPageBranchVariable"></xsl:param>
<xsl:value-of select="$currentPageBranchVariable/@FullName"/>
// how to get the parent node of $currentPageBranchVariable?
</xsl:template>
見ることができるように、$ currentPageBranchVariableは、アイテムのノードを含む第2のテンプレート用の変数です。
親要素をそこから得る方法はありますか?
私は以下を試みたが、うまくいきませんでした:
<xsl:value-of select="../$currentPageBranchVariable/@FullName"/>
<xsl:value-of select="parent::node()/$currentPageBranchVariable/@FullName"/>
<xsl:value-of select="parent($currentPageBranchVariable)/@FullName"/>
は疑問がクリアされている願っています。
多分私がしようとしていることは不可能でしょうか?
ありがとう、