aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/origin/index.html
blob: 5fd2b80559e6d7e67c632ac67eb21af584cb5deb (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
50
51
---
title: WindowOrWorkerGlobalScope.origin
slug: Web/API/origin
translation_of: Web/API/WindowOrWorkerGlobalScope/origin
original_slug: Web/API/WindowOrWorkerGlobalScope/origin
---
<p>{{APIRef()}}{{SeeCompatTable}}</p>

<p>La propriété <code><strong>origin</strong></code> de l'interface {{domxref("WindowOrWorkerGlobalScope")}} retourne l'origine du scope global, serialisé en chaîne de caractères.</p>

<h2 id="Syntaxe">Syntaxe</h2>

<pre class="syntaxbox">var <em>myOrigin</em> = self.origin; // ou simplement origin
</pre>

<h3 id="Valeur">Valeur</h3>

<p>Une {{domxref("USVString")}}.</p>

<h2 id="Exemples">Exemples</h2>

<p>Exécuté depuis un worker, le code suivant permet d'afficher en console le scope global de ce worker à chaque message reçu.</p>

<pre class="brush: js">onmessage = function() {
  console.log(self.origin);
};</pre>

<p>Si l'origine n'est pas sous la forme scheme/host/port (par exemple, si vous exécutez le code en local, via <code>file://</code>), <code>origin</code> retournera la chaîne de caractère <code>"null"</code>.</p>

<h2 id="Spécifications">Spécifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">Statut</th>
   <th scope="col">Commentaires</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', 'webappapis.html#dom-origin', 'WindowOrWorkerGlobalScope.origin')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>Définition initiale.</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>



<p>{{Compat("api.WindowOrWorkerGlobalScope.origin")}}</p>