blob: b7837662e4631099f4a48cbc8ccef505e537cfa5 (
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
|
---
title: Document.async
slug: Web/API/XMLDocument/async
tags:
- API
- Asynchrone
- DOM
- Document
- Propriété
- XML
translation_of: Web/API/XMLDocument/async
---
{{APIRef("DOM")}}{{Deprecated_header}} {{Non-standard_header}}
`document.async` peut être défini pour indiquer si un appel {{domxref("document.load")}} doit être une requête asynchrone ou synchrone. `true` (_vrai_) est la valeur par défaut, indiquant que les documents doivent être chargés de façon asynchrone.
(Il a été possible de charger des documents de manière synchrone depuis 1.4 alpha.)
## Exemple
```js
function loadXMLData(e) {
alert(new XMLSerializer().serializeToString(e.target)); // Donne le contenu querydata.xml sous forme "string" (chaîne de caractère)
}
var xmlDoc = document.implementation.createDocument("", "test", null);
xmlDoc.async = false;
xmlDoc.onload = loadXMLData;
xmlDoc.load('querydata.xml');
```
## Spécification
- [DOM Level 3 Load & Save module](http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS)
## Voir aussi
- [XML in Mozilla](/fr/docs/XML_dans_Mozilla)
- {{domxref("document.load")}}
|