From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/fr/web/api/url/tostring/index.html | 63 ++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 files/fr/web/api/url/tostring/index.html (limited to 'files/fr/web/api/url/tostring') diff --git a/files/fr/web/api/url/tostring/index.html b/files/fr/web/api/url/tostring/index.html new file mode 100644 index 0000000000..fa5fca18b2 --- /dev/null +++ b/files/fr/web/api/url/tostring/index.html @@ -0,0 +1,63 @@ +--- +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

+ +
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écificationStatutCommentaire
{{SpecName('URL', '#URL-stringification-behavior', 'stringifier')}}{{Spec2('URL')}}Définition initiale.
+ +

Compatibilité des navigateurs

+ + + +

{{Compat("api.URL.toString")}}

+ +

Voir aussi

+ + -- cgit v1.2.3-54-g00ecf