aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/getselection
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-10-02 17:20:24 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-02 17:30:20 +0200
commit1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch)
tree30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/window/getselection
parentc05efa8d7ae464235cf83d7c0956e42dc6974103 (diff)
downloadtranslated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip
convert content to md
Diffstat (limited to 'files/fr/web/api/window/getselection')
-rw-r--r--files/fr/web/api/window/getselection/index.md52
1 files changed, 23 insertions, 29 deletions
diff --git a/files/fr/web/api/window/getselection/index.md b/files/fr/web/api/window/getselection/index.md
index 579af3f9a0..6b2f7b3796 100644
--- a/files/fr/web/api/window/getselection/index.md
+++ b/files/fr/web/api/window/getselection/index.md
@@ -3,45 +3,39 @@ title: window.getSelection
slug: Web/API/Window/getSelection
translation_of: Web/API/Window/getSelection
---
-<p>{{ ApiRef() }}</p>
+{{ ApiRef() }}
-<p>Renvoie un objet selection représentant le ou les objets sélectionnés.</p>
+Renvoie un objet selection représentant le ou les objets sélectionnés.
-<h2 id="Syntaxe">Syntaxe</h2>
+## Syntaxe
-<pre class="eval"><em>selection</em> = window.getSelection()
-</pre>
+ selection = window.getSelection()
-<h2 id="Param.C3.A8tres">Paramètres</h2>
+## Paramètres
-<ul>
- <li><code>selection</code> est un objet de type {{DOMxRef("Selection")}}.</li>
-</ul>
+- `selection` est un objet de type {{DOMxRef("Selection")}}.
-<h2 id="Exemple">Exemple</h2>
+## Exemple
-<pre class="eval">function foo() {
- var selObj = window.getSelection();
- alert(selObj);
- var selRange = selObj.getRangeAt(0);
- // travailler avec la sélection
-}
-</pre>
+ function foo() {
+ var selObj = window.getSelection();
+ alert(selObj);
+ var selRange = selObj.getRangeAt(0);
+ // travailler avec la sélection
+ }
-<h2 id="Notes">Notes</h2>
+## Notes
-<p>En <a href="fr/JavaScript">JavaScript</a>, lorsqu'un objet de type Selection est passé à une fonction, c'est une représentation sous forme de chaîne (string), c'est-à-dire le texte sélectionné, qui lui est passée à la place. L'objet selection apparaît donc comme une chaîne, alors qu'il s'agit en réalité d'un objet possédant ses propres propriétés et méthodes. En pratique, c'est donc la valeur renvoyée par la méthode <code><a href="fr/DOM/Selection/toString">toString</a></code> de l'objet Selection qui est passée. Dans l'exemple ci-dessus, <code>selObj</code> est automatiquement « convertie » lorsqu'elle est passée à <a href="fr/DOM/window.alert">window.alert</a>. Cependant, pour utiliser une propriété ou méthode JavaScript de <a href="fr/JS/String">String</a> comme <code><a href="fr/JS/String.prototype.length">length</a></code> ou <code><a href="fr/JS/String.prototype.substr">substr</a></code>, il est nécessaire d'appeler manuellement la méthode <code>toString</code>. I'm treading carefully with the word "convert" here because it could be misinterpreted as a permanent convert - Maian</p>
+En [JavaScript](fr/JavaScript), lorsqu'un objet de type Selection est passé à une fonction, c'est une représentation sous forme de chaîne (string), c'est-à-dire le texte sélectionné, qui lui est passée à la place. L'objet selection apparaît donc comme une chaîne, alors qu'il s'agit en réalité d'un objet possédant ses propres propriétés et méthodes. En pratique, c'est donc la valeur renvoyée par la méthode [`toString`](fr/DOM/Selection/toString) de l'objet Selection qui est passée. Dans l'exemple ci-dessus, `selObj` est automatiquement « convertie » lorsqu'elle est passée à [window.alert](fr/DOM/window.alert). Cependant, pour utiliser une propriété ou méthode JavaScript de [String](fr/JS/String) comme [`length`](fr/JS/String.prototype.length) ou [`substr`](fr/JS/String.prototype.substr), il est nécessaire d'appeler manuellement la méthode `toString`. I'm treading carefully with the word "convert" here because it could be misinterpreted as a permanent convert - Maian
-<h2 id="Sp.C3.A9cification">Spécification</h2>
+## Spécification
-<p>DOM Level 0. Ne fait partie d'aucune spécification.</p>
+DOM Level 0. Ne fait partie d'aucune spécification.
-<h2 id="Voir_aussi">Voir aussi</h2>
+## Voir aussi
-<ul>
- <li><a href="../Selection_API">Selection API</a></li>
- <li><a href="../Selection"><code>Selection</code></a></li>
- <li><a href="../Range"><code>Range</code></a></li>
- <li><a href="../Document/getSelection"><code>Document.getSelection()</code></a></li>
- <li><a href="../HTMLInputElement/setSelectionRange"><code>HTMLInputElement.setSelectionRange()</code></a></li>
-</ul>
+- [Selection API](../Selection_API)
+- [`Selection`](../Selection)
+- [`Range`](../Range)
+- [`Document.getSelection()`](../Document/getSelection)
+- [`HTMLInputElement.setSelectionRange()`](../HTMLInputElement/setSelectionRange)