aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/xpath/functions/current/index.md
blob: c90cae5ffb66ed37811c3c5824fa9c5a852f7147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
title: current
slug: Web/XPath/Functions/current
tags:
  - Référence_XSLT
translation_of: Web/XPath/Functions/current
original_slug: Web/XPath/Fonctions/current
---
{{ XsltRef() }}

La fonction `current` peut être utilisée pour obtenir le nœud courant dans une instruction XSLT.

### Syntaxe

    current()

### Retour

Un ensemble de nœuds contenant uniquement le nœud courant.

### Notes

Cette fonction est un ajout à XPath spécifique à XSLT. Elle ne fait pas partie de la bibliothèque de fonctions XPath core.

Le nœud courant est toujours identique au nœud de contexte. Les deux exemples suivants sont sémantiquement équivalents :

    <xsl:value-of select="current()"/>

<!---->

    <xsl:value-of select="."/>

### Définition

[XSLT 1.0, section 12.4](http://www.w3.org/TR/xslt#function-current).

### Support Gecko

Supportée.