blob: 31e15a16be0c8d8ce334c80bf49d070dc1d9ede7 (
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
52
53
54
|
---
title: Document.documentURI
slug: Web/API/Document/documentURI
tags:
- API
- DOM
- Document
- Propriétés
- URI
translation_of: Web/API/Document/documentURI
---
<div>{{ApiRef("DOM")}}</div>
<p>La propriété <code><strong>documentURI</strong></code> de l'interface {{domxref("Document")}} renvoie l'emplacement du document sous forme "string" (<em>chaîne de caractères</em>).</p>
<p>Initialement, la spécification DOM3 définissait cet attribut en lecture/écriture. Dans la norme actuelle DOM, il est en lecture seule.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">var <var>string</var> = document.documentURI;
</pre>
<h2 id="Notes">Notes</h2>
<p>Les documents HTML ont une propriété {{domxref("document.URL")}} qui renvoie la même valeur. Contrairement à l'<code>URL</code>, <code>documentURI</code> est disponible pour tous les types de documents.</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">Commentaire</th>
</tr>
<tr>
<td>{{SpecName('DOM WHATWG', '#dom-document-documenturi','documentURI')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('DOM3 Core', '#Document3-documentURI', 'documentURI')}}</td>
<td>{{Spec2('DOM3 Core')}}</td>
<td>Définition initiale</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Document.documentURI")}}</p>
|