在DSpace' item-view.xsl select
dim:field
的陈述中,我找到了
<xsl:copy-of select="node()"/>
在上下文中:
<xsl:for-each select="dim:field[@element='description' and @qualifier='abstract']">
<xsl:choose>
<xsl:when test="node()">
<xsl:copy-of select="node()"/>
</xsl:when>
以及
<xsl:copy-of select="./node()"/>
在上下文中:
<xsl:for-each select="dim:field[@element='identifier' and @qualifier='uri']">
<a>
<xsl:attribute name="href">
<xsl:copy-of select="./node()"/>
</xsl:attribute>
我想知道在此设置中node()
和./node()
之间是否存在任何差异,如果有,会有什么区别?
答案 0 :(得分:3)