aboutsummaryrefslogtreecommitdiff
path: root/files/fr/archive/b2g_os/api/domrequest/readystate/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/archive/b2g_os/api/domrequest/readystate/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/fr/archive/b2g_os/api/domrequest/readystate/index.html')
-rw-r--r--files/fr/archive/b2g_os/api/domrequest/readystate/index.html77
1 files changed, 77 insertions, 0 deletions
diff --git a/files/fr/archive/b2g_os/api/domrequest/readystate/index.html b/files/fr/archive/b2g_os/api/domrequest/readystate/index.html
new file mode 100644
index 0000000000..15e22601a4
--- /dev/null
+++ b/files/fr/archive/b2g_os/api/domrequest/readystate/index.html
@@ -0,0 +1,77 @@
+---
+title: DOMRequest.readyState
+slug: Archive/B2G_OS/API/DOMRequest/readyState
+tags:
+ - DOM
+ - Référence_du_DOM_Gecko
+translation_of: Archive/B2G_OS/API/DOMRequest/readyState
+---
+<p>{{ ApiRef() }}</p>
+<p>{{ non-standard_header() }}</p>
+<h2 id="Summary" name="Summary">Résumé</h2>
+<p>Cette propriété est une chaîne de caractères indiquant si une opération {{ domxref("DOMRequest") }} a fini, ou pas, de s'éxecuter.</p>
+<h2 id="Syntax" name="Syntax">Syntaxe</h2>
+<pre class="eval">var etat = requete.readyState;
+</pre>
+<p>Où <em>requete</em> est un objet {{ domxref("DOMRequest") }}.</p>
+<p>Cette propriété est en lecture seul.</p>
+<h2 id="Valeur_renvoyée">Valeur renvoyée</h2>
+<p>La valeur renvoyé est une chaîne de caractères JavaScript dont le contenu est "<code>done</code>" si l'opération est finie ou "<code>pending</code>" si elle ne l'est pas.</p>
+<h2 id="Specification" name="Specification">Spécification</h2>
+<p>Ne fait actuellement partie d'aucune spécification.</p>
+<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
+<p>{{ CompatibilityTable() }}</p>
+<div id="compat-desktop">
+ <table class="compat-table">
+ <tbody>
+ <tr>
+ <th>Fonction</th>
+ <th>Chrome</th>
+ <th>Firefox (Gecko)</th>
+ <th>Internet Explorer</th>
+ <th>Opera</th>
+ <th>Safari</th>
+ </tr>
+ <tr>
+ <td>Support de base</td>
+ <td>{{ CompatUnknown() }}</td>
+ <td>{{ CompatGeckoDesktop("13.0") }}</td>
+ <td>{{ CompatUnknown() }}</td>
+ <td>{{ CompatUnknown() }}</td>
+ <td>{{ CompatUnknown() }}</td>
+ </tr>
+ </tbody>
+ </table>
+</div>
+<div id="compat-mobile">
+ <table class="compat-table">
+ <tbody>
+ <tr>
+ <th>Fonction</th>
+ <th>Android</th>
+ <th>Chrome pour Android</th>
+ <th>Firefox Mobile (Gecko)</th>
+ <th>IE Mobile</th>
+ <th>Opera Mobile</th>
+ <th>Safari Mobile</th>
+ </tr>
+ <tr>
+ <td>Support de base</td>
+ <td>{{ CompatUnknown() }}</td>
+ <td>{{ CompatUnknown() }}</td>
+ <td>{{ CompatGeckoMobile("13.0") }}</td>
+ <td>{{ CompatUnknown() }}</td>
+ <td>{{ CompatUnknown() }}</td>
+ <td>{{ CompatUnknown() }}</td>
+ </tr>
+ </tbody>
+ </table>
+</div>
+<h2 id="Voir_aussi">Voir aussi</h2>
+<ul>
+ <li>{{ domxref("DOMRequest") }}</li>
+ <li>{{ domxref("DOMRequest.onsuccess") }}</li>
+ <li>{{ domxref("DOMRequest.onerror") }}</li>
+ <li>{{ domxref("DOMRequest.result") }}</li>
+ <li>{{ domxref("DOMRequest.error") }}</li>
+</ul>