diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/domtokenlist/supports/index.md | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/domtokenlist/supports/index.md')
-rw-r--r-- | files/fr/web/api/domtokenlist/supports/index.md | 59 |
1 files changed, 24 insertions, 35 deletions
diff --git a/files/fr/web/api/domtokenlist/supports/index.md b/files/fr/web/api/domtokenlist/supports/index.md index b9fb5ea4cf..8fdc4d6e12 100644 --- a/files/fr/web/api/domtokenlist/supports/index.md +++ b/files/fr/web/api/domtokenlist/supports/index.md @@ -7,28 +7,27 @@ tags: - Méthodes translation_of: Web/API/DOMTokenList/supports --- -<p>{{APIRef("DOM")}}{{SeeCompatTable}}</p> +{{APIRef("DOM")}}{{SeeCompatTable}} -<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> +La méthode **`supports()`** de l'interface {{domxref("DOMTokenList")}} renvoie `true` (_vrai_) si une marque (_token)_ 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. -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="syntaxbox">var <em>boolean</em> = element.supports(<em>token</em>)</pre> + var boolean = element.supports(token) -<h3 id="Paramètres">Paramètres</h3> +### Paramètres -<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> +- _`token`_ + - : Une {{domxref("DOMString")}} (_chaîne de caractères_) contenant la marque à interroger. -<h3 id="Renvoie">Renvoie</h3> +### Renvoie -<p>un {{jsxref("Boolean")}} (<em>booléen</em>) indiquant si la marque a été trouvée.</p> +un {{jsxref("Boolean")}} (_booléen_) indiquant si la marque a été trouvée. -<h2 id="Exemple">Exemple</h2> +## Exemple -<pre class="brush: js"><code>var iframe = document.getElementById('display'); +```js +var iframe = document.getElementById('display'); if (iframe.sandbox.supports('an-upcoming-feature')) { // code de support pour la future et mystérieuse fonctionnalité } else { @@ -38,25 +37,15 @@ if (iframe.sandbox.supports('an-upcoming-feature')) { 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>
\ No newline at end of file +} +``` + +## Spécifications + +| Spécification | Statut | Commentaire | +| ------------------------------------------------ | -------------------------------------------- | -------------------- | +| {{SpecName('Credential Management')}} | {{Spec2('Credential Management')}} | Définition initiale. | + +## Compatibilité des navigateurs + +{{Compat("api.DOMTokenList.supports")}} |