From 39f2114f9797eb51994966c6bb8ff1814c9a4da8 Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 12:36:08 +0100 Subject: unslug fr: move --- .../web/api/htmlhyperlinkelementutils/index.html | 213 +++++++++++++++++++++ 1 file changed, 213 insertions(+) create mode 100644 files/fr/web/api/htmlhyperlinkelementutils/index.html (limited to 'files/fr/web/api/htmlhyperlinkelementutils') diff --git a/files/fr/web/api/htmlhyperlinkelementutils/index.html b/files/fr/web/api/htmlhyperlinkelementutils/index.html new file mode 100644 index 0000000000..7bbe88b470 --- /dev/null +++ b/files/fr/web/api/htmlhyperlinkelementutils/index.html @@ -0,0 +1,213 @@ +--- +title: URLUtils +slug: Web/API/URLUtils +tags: + - API + - Experimental + - JavaScript + - Reference + - URL +translation_of: Web/API/HTMLHyperlinkElementUtils +--- +

{{APIRef}}{{SeeCompatTable}}

+

L'interface URLUtils définit des méthodes utilitaires pour travailler avec les URL.

+

il n'y a pas d'objets de ce type, mais quelques objets l'implémentent, comme {{domxref("Location")}}, {{domxref("URL")}}, {{domxref("HTMLAnchorElement")}}, et {{domxref("HTMLAreaElement")}}.

+

Propriétés

+

Cette interface n'hérite d'aucune propriété.

+
+
+ {{domxref("URLUtils.href")}}
+
+ Une {{domxref("DOMString")}} contenant l'URL entière.
+
+ {{domxref("URLUtils.protocol")}}
+
+ Une {{domxref("DOMString")}} contenant le schéma de protocole de l'URL, incluant le ':' final.
+
+ {{domxref("URLUtils.host")}}
+
+ Une {{domxref("DOMString")}} contenant l'hôte, c'est-à-dire le domaine, et, si le port de l'URL n'est pas vide (ce qui peut arriver s'il n'a pas été spécifié ou si la valeur spécifiée est celle du port par défaut du schéma de l'URL), un ':', et le port de l'URL.
+
+ {{domxref("URLUtils.hostname")}}
+
+ Une {{domxref("DOMString")}} contenant le domaine de l'URL.
+
+ {{domxref("URLUtils.port")}}
+
+ Une {{domxref("DOMString")}} contenant le numéro de port de l'URL.
+
+ {{domxref("URLUtils.pathname")}}
+
+ Une {{domxref("DOMString")}} contenant un '/' initial suivi du chemin de l'URL.
+
+ {{domxref("URLUtils.search")}}
+
+ Une {{domxref("DOMString")}} contenant un '?' suivi des paramètres de l'URL.
+
+ {{domxref("URLUtils.hash")}}
+
+ Une {{domxref("DOMString")}} contenant un '#' suivi de l'identifiant de fragment de l'URL.
+
+ {{domxref("URLUtils.username")}}
+
+ Une {{domxref("DOMString")}} contenant le nom d'utilisateur spécifié devant le nom de domaine.
+
+ {{domxref("URLUtils.password")}}
+
+ Une {{domxref("DOMString")}} contenant le mot de passe spécifié devant le nom de domaine.
+
+ {{domxref("URLUtils.origin")}} {{readonlyInline}}
+
+ Retourne une {{domxref("DOMString")}} contenant l'origine de l'URL, c'est-à-dire son schéma, son domaine et son port.
+
+ {{domxref("URLUtils.searchParams")}}
+
+ Retourne un objet {{domxref("URLSearchParams")}} permettant d'accéder aux arguments de requête GET contenus dans l'URL.
+
+

Méthodes

+

Cette interface n'hérite d'aucune méthode.

+
+
+ {{domxref("URLUtils.toString()")}}
+
+ Retourne une {{domxref("DOMString")}} contenant l'URL entière. C'est un synonyme de {{domxref("URLUtils.href")}}, sauf qu'il ne peut être utilisé pour modifier la valeur.
+
+

Spécifications

+ + + + + + + + + + + + + + + +
SpécificationStatutCommentaires
{{SpecName('URL', '#urlutils', 'URLUtils')}}{{Spec2('URL')}}Définition initiale
+

Compatibilité

+

{{ CompatibilityTable() }}

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FonctionnalitéChromeFirefox (Gecko)Internet ExplorerOperaSafari
Support de base{{CompatNo}} [1]{{CompatGeckoDesktop("22")}} [1]{{CompatNo}} [1]{{CompatNo}} [1]{{CompatNo}} [1]
searchParams{{CompatUnknown}}{{CompatGeckoDesktop("29")}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
username et password{{CompatUnknown}}{{CompatGeckoDesktop("26")}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
origin{{CompatUnknown}}{{CompatGeckoDesktop("26")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
origin sur Window.location{{CompatUnknown}}{{CompatGeckoDesktop("21")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FonctionnalitéAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Support de base{{CompatNo}} [1]{{CompatNo}} [1]{{CompatGeckoMobile("22")}} [1]{{CompatNo}} [1]{{CompatNo}} [1]{{CompatNo}} [1]
searchParams{{CompatUnknown}}{{CompatUnknown}}{{CompatNo}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
username et password{{CompatUnknown}}{{CompatUnknown}}{{CompatGeckoMobile("26")}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
origin{{CompatUnknown}}{{CompatUnknown}}{{CompatGeckoMobile("26")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
origin sur Window.location{{CompatUnknown}}{{CompatUnknown}}{{CompatGeckoMobile("21")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
+
+

[1] Bien qu'elles ne soient pas groupées dans une seule interface abstraite, ces méthodes sont directement disponibles sur les interfaces qui les implémentent, si cette interface est supportée.

+

Voir aussi

+ -- cgit v1.2.3-54-g00ecf