current - XPath 编辑
The current
function can be used to get the context node in an XSLT instruction.
Syntax
current()
Returns
A node-set containing only the current node.
Notes
This function is an XSLT-specific addition to XPath. It is not a part of the core XPath function library.
For an outermost expression (an expression not occurring within another expression), the current node is always the same as the context node (which will be returned by the .
or self
syntax). The following two are symantically equivalent.
<xsl:value-of select="current()"/>
<xsl:value-of select="."/>
In an inner expression (e.g. in square brackets), the current node is still the same as it would have been in an outermost expression. Thus within all of the following three expressions the current
function (not the entire expressions) returns the same node. Moreover, the latter two are semantically equivalent.
<xsl:value-of select="current()"/>
<xsl:value-of select="foo/bar[current() = X]"/>
<xsl:variable name="current" select="current()"/> <xsl:value-of select="foo/bar[$current = X]"/>
And the next code is also semantically equivalent to the latter two, since the .
occurs in an outermost expression.
<xsl:variable name="current" select="."/> <xsl:value-of select="foo/bar[$current = X]"/>
But the .
always relate to the narrowest context. Thus in
<xsl:value-of select="foo/bar[. = X]"/>
the .
returns the bar
node, which may be different from the current node.
Defined
Gecko support
Supported.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论