blob: d830f6ae156d5bbdc3428e25f9fc076fd6cd0a6c (
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
|
---
title: URL.protocol
slug: Web/API/URL/protocol
tags:
- API
- Propriété
- Reference
- URL
- protocole
translation_of: Web/API/URL/protocol
---
{{ApiRef("URL API")}}
La propriété **`protocol`** de l'interface {{domxref("URL")}} est une {{domxref("USVString")}} représentant le schéma protocolaire de URL, incluant `':'` à la fin.
{{AvailableInWorkers}}
## Syntaxe
string = object.protocol;
object.protocol = string;
### Valeur
Un {{domxref("USVString")}}.
## Exemples
```js
var url = new URL('https://developer.mozilla.org/en-US/docs/Web/API/URL/protocol');
var result = url.protocol; // Retourne:"https:"
```
## Spécifications
| Spécification | Statut | Commentaire |
| -------------------------------------------------------------------- | -------------------- | -------------------- |
| {{SpecName('URL', '#dom-url-protocol', 'protocol')}} | {{Spec2('URL')}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("api.URL.protocol")}}
## A voir également
- L'interface {{domxref("URL")}} dont il est contenu.
|