diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/api/domtokenlist/supports/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/api/domtokenlist/supports/index.html')
-rw-r--r-- | files/fr/web/api/domtokenlist/supports/index.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/files/fr/web/api/domtokenlist/supports/index.html b/files/fr/web/api/domtokenlist/supports/index.html new file mode 100644 index 0000000000..b536c5f40c --- /dev/null +++ b/files/fr/web/api/domtokenlist/supports/index.html @@ -0,0 +1,66 @@ +--- +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> + +<div id="compat-desktop"> </div> + +<div id="compat-mobile"> </div> |