diff options
Diffstat (limited to 'files/es/web/api/xmldocument/async/index.html')
-rw-r--r-- | files/es/web/api/xmldocument/async/index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/files/es/web/api/xmldocument/async/index.html b/files/es/web/api/xmldocument/async/index.html new file mode 100644 index 0000000000..43060a5d69 --- /dev/null +++ b/files/es/web/api/xmldocument/async/index.html @@ -0,0 +1,34 @@ +--- +title: Document.async +slug: Web/API/XMLDocument/async +translation_of: Web/API/XMLDocument/async +original_slug: Web/API/Document/async +--- +<p><code>document.async</code> es utilizado para indicar cuándo un llamado de {{domxref("document.load")}} debe ser sincrónico o asincrónico. <code>true</code> es su valor por defecto, indicando que el documento se cargó asincrónicamente.</p> + +<p>(Desde la versión 1.4 alpha es posible cargar documentos sincrónicamente)</p> + +<h2 id="Ejemplo">Ejemplo</h2> + +<pre class="brush:js">function loadXMLData(e) { + alert(new XMLSerializer().serializeToString(e.target)); // Devuelve los contenidos de querydata.xml como un string +} + +var xmlDoc = document.implementation.createDocument("", "test", null); + +xmlDoc.async = false; +xmlDoc.onload = loadXMLData; +xmlDoc.load('querydata.xml');</pre> + +<h2 id="Specification" name="Specification">Especificación</h2> + +<ul> + <li><a href="http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS">DOM Level 3 Load & Save module</a></li> +</ul> + +<h2 id="Véase_también">Véase también</h2> + +<ul> + <li><a href="/en-US/docs/XML_in_Mozilla" title="XML_in_Mozilla">XML in Mozilla</a></li> + <li>{{domxref("document.load")}}</li> +</ul> |