--- title: range.toString slug: Web/API/Range/toString translation_of: Web/API/Range/toString ---

{{ APIRef("DOM") }}

Restituisce il testo del Range.

Sintassi

text = range.toString();

Esempio

range = document.createRange();
range.selectNode(document.getElementsByTagName("div").item(0));
text = range.toString();

Note

Alterare i contenuti di un Range causa una chiamata implicita di toString(), quindi comparare il Range e il testo attraverso un alert dialog รจ inutile.

Specifiche

toString