blob: 5f61fd9b31dc74f541c48a96d97c186ec6e1a0fd (
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
40
41
42
43
44
45
46
47
48
49
|
---
title: URL.toString()
slug: Web/API/URL/toString
tags:
- API
- Méthode
- Reference
- URL
- toString()
translation_of: Web/API/URL/toString
---
{{ApiRef("URL API")}}
La méthode **`URL.toString()`** retourne un {{domxref("USVString")}} contenant tout l'URL. C'est en effet, une version de {{domxref("URL.href")}} en lecture seule.
{{AvailableInWorkers}}
## Syntaxe
string = url.toString();
### Paramètres
Aucun.
### Valeur de retour
Un {{domxref("USVString")}}.
## Examples
```js
const url = new URL("https://developer.mozilla.org/en-US/docs/Web/API/URL/toString");
url.toString() // doit retourner l'URL en tant que chaîne
```
## Spécifications
| Spécification | Statut | Commentaire |
| ---------------------------------------------------------------------------------------- | -------------------- | -------------------- |
| {{SpecName('URL', '#URL-stringification-behavior', 'stringifier')}} | {{Spec2('URL')}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("api.URL.toString")}}
## Voir aussi
- L'interface {{domxref("URL")}} à laquelle elle appartient.
|