blob: b9fb5ea4cf87be3f8e1f531406e8c753626c2b0d (
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
|
---
title: DOMTokenList.supports()
slug: Web/API/DOMTokenList/supports
tags:
- API
- DOM
- Méthodes
translation_of: Web/API/DOMTokenList/supports
---
<p>{{APIRef("DOM")}}{{SeeCompatTable}}</p>
<p>La méthode <strong><code>supports()</code></strong> de l'interface {{domxref("DOMTokenList")}} renvoie <code>true</code> (<em>vrai</em>) si une marque (<em>token)</em> donnée se trouve parmi les marques prises en charge dans l'attribut associé. Cette méthode est destinée à la détection des fonctionnalités.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">var <em>boolean</em> = element.supports(<em>token</em>)</pre>
<h3 id="Paramètres">Paramètres</h3>
<dl>
<dt><em><code>token</code></em></dt>
<dd>Une {{domxref("DOMString")}} (<em>chaîne de caractères</em>) contenant la marque à interroger.</dd>
</dl>
<h3 id="Renvoie">Renvoie</h3>
<p>un {{jsxref("Boolean")}} (<em>booléen</em>) indiquant si la marque a été trouvée.</p>
<h2 id="Exemple">Exemple</h2>
<pre class="brush: js"><code>var iframe = document.getElementById('display');
if (iframe.sandbox.supports('an-upcoming-feature')) {
// code de support pour la future et mystérieuse fonctionnalité
} else {
// code de secours
}
if (iframe.sandbox.supports('allow-scripts')) {
// instruction cadre de l'exécution de JavaScript
// NOTE: ceci fonctionne bien mais est juste un exemple!
}</code></pre>
<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('Credential Management')}}</td>
<td>{{Spec2('Credential Management')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<div>{{Compat("api.DOMTokenList.supports")}}</div>
|