--- title: toString slug: Web/API/Selection/toString tags: - Référence_du_DOM_Gecko translation_of: Web/API/Selection/toString ---

{{ ApiRef() }}

Résumé

Renvoie une chaîne de caractères représentant l'actuel objet selection, i.e. le texte sélectionné.

Syntaxe

string =sel.toString()

Paramètres

Aucun.

Description

Cette méthode renvoie le texte sélectionné.

En JavaScript, cette méthode est appelée automatiquement pour des objets selection aux fonctions nécessitant un paramètre string :

alert(window.getSelection()) // Appel automatique
alert(window.getSelection().toString())  // Appel explicite

Voir aussi

 

{{ languages( { "en": "en/DOM/Selection/toString", "es": "es/DOM/Selection/toString", "it": "it/DOM/Selection/toString", "pl": "pl/DOM/Selection/toString" } ) }}