blob: dca567cf36a9a54d207c6fcb96efc26eb399e526 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
---
title: Window.clearImmediate()
slug: Web/API/Window/clearImmediate
tags:
- API
- HTML DOM
- Méthode
- Window
translation_of: Web/API/Window/clearImmediate
---
<p>{{APIRef("HTML DOM")}}{{Non-standard_header}}</p>
<p>Cette méthode efface l'action spécifiée par {{DOMxRef("window.setImmediate")}}.</p>
<div class="blockIndicator note">
<p>Cette méthode ne devrait pas devenir standard et n'est implémentée que par les versions récentes d'Internet Explorer et de Node.js 0.10+. Il rencontre la résistance à la fois de <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=686201" title="https://bugzilla.mozilla.org/show_bug.cgi?id=686201">Gecko</a> (Firefox) et <a href="http://code.google.com/p/chromium/issues/detail?id=146172" title="http://code.google.com/p/chromium/issues/detail?id=146172">Webkit</a> (Google/Apple).</p>
</div>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox notranslate"><var>window</var>.clearImmediate( <var>immediateID</var> )
</pre>
<p>où immediateID est un ID retourné par {{DOMxRef("window.setImmediate")}}.</p>
<h2 id="Exemples">Exemples</h2>
<pre class="brush: js notranslate">let immediateID = setImmediate(() => {
// Exécute du code
}
document.getElementById("bouton")
.addEventListener(() => {
clearImmediate(immediateID);
});
</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="external" href="https://w3c.github.io/setImmediate/#si-setImmediate" hreflang="en" lang="en">Efficient Script Yielding<br>
<small lang="en-US">The definition of '<code>setImmediate</code>' in that specification.</small></a></td>
<td><span class="spec-ED">Editor's Draft</span></td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<div class="hidden">Le tableau de compatibilité de cette page est généré à partir de données structurées. Si vous souhaitez contribuer aux donées, veuillez consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et envoyez-nous une pull request.</div>
<p>{{Compat("api.Window.clearImmediate")}}</p>
<h2 id="Voir_également">Voir également</h2>
<ul>
<li>{{DOMxRef("Window.setImmediate()")}}</li>
</ul>
|