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/element/hasattributes | |
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/element/hasattributes')
-rw-r--r-- | files/fr/web/api/element/hasattributes/index.md | 79 |
1 files changed, 31 insertions, 48 deletions
diff --git a/files/fr/web/api/element/hasattributes/index.md b/files/fr/web/api/element/hasattributes/index.md index ec7c62931f..abd5571777 100644 --- a/files/fr/web/api/element/hasattributes/index.md +++ b/files/fr/web/api/element/hasattributes/index.md @@ -10,70 +10,53 @@ tags: - polyfill translation_of: Web/API/Element/hasAttributes --- -<div>{{ApiRef("DOM")}}</div> +{{ApiRef("DOM")}} -<p>La méthode <strong><code>hasAttributes()</code></strong>, rattachée à l'interface {{domxref("Element")}}, renvoie une valeur booléenne indiquant si le nœud courant a au moins un attribut ou non.</p> +La méthode **`hasAttributes()`**, rattachée à l'interface {{domxref("Element")}}, renvoie une valeur booléenne indiquant si le nœud courant a au moins un attribut ou non. -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="brush:js">var result = element.hasAttributes();</pre> +```js +var result = element.hasAttributes(); +``` -<h3 id="Valeur_de_retour">Valeur de retour</h3> +### Valeur de retour -<dl> - <dt><code>result</code></dt> - <dd>contient la valeur de retour <code>true</code> ou <code>false</code>.</dd> -</dl> +- `result` + - : contient la valeur de retour `true` ou `false`. -<h2 id="Exemple">Exemple</h2> +## Exemple -<pre class="brush:js ">var foo = document.getElementById("foo"); +```js +var foo = document.getElementById("foo"); if (foo.hasAttributes()) { // faire quelque chose avec 'foo.attributes' -}</pre> +} +``` -<h2 id="Polyfill">Polyfill</h2> +## Polyfill -<pre class="brush:js ">;(function(prototype) { +```js +;(function(prototype) { prototype.hasAttributes = prototype.hasAttributes || function() { - return (this.attributes.length > 0); + return (this.attributes.length > 0); } -})(Element.prototype);</pre> +})(Element.prototype); +``` -<h2 id="Spécifications">Spécifications</h2> +## Spécifications -<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("DOM WHATWG", "#dom-element-hasattributes", "Element.hasAttributes()")}}</td> - <td>{{Spec2('DOM WHATWG')}}</td> - <td>Déplacé de l'interface {{domxref("Node")}} vers l'interface plus spécialisée {{domxref("Element")}}.</td> - </tr> - <tr> - <td>{{SpecName('DOM3 Core','#ID-NodeHasAttrs','hasAttributes()')}}</td> - <td>{{Spec2('DOM3 Core')}}</td> - <td>Pas de changement par rapport à {{SpecName("DOM2 Core")}}</td> - </tr> - <tr> - <td>{{SpecName('DOM2 Core','#ID-NodeHasAttrs','hasAttributes()')}}</td> - <td>{{Spec2('DOM2 Core')}}</td> - <td>Définition initiale, sur l'interface {{domxref("Node")}}.</td> - </tr> - </tbody> -</table> +| Spécification | Statut | Commentaire | +| ---------------------------------------------------------------------------------------------------------------- | -------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| {{SpecName("DOM WHATWG", "#dom-element-hasattributes", "Element.hasAttributes()")}} | {{Spec2('DOM WHATWG')}} | Déplacé de l'interface {{domxref("Node")}} vers l'interface plus spécialisée {{domxref("Element")}}. | +| {{SpecName('DOM3 Core','#ID-NodeHasAttrs','hasAttributes()')}} | {{Spec2('DOM3 Core')}} | Pas de changement par rapport à {{SpecName("DOM2 Core")}} | +| {{SpecName('DOM2 Core','#ID-NodeHasAttrs','hasAttributes()')}} | {{Spec2('DOM2 Core')}} | Définition initiale, sur l'interface {{domxref("Node")}}. | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("api.Element.hasAttributes")}}</p> +{{Compat("api.Element.hasAttributes")}} -<h2 id="Voir_aussi">Voir aussi</h2> +## Voir aussi -<ul> - <li>{{domxref("Element.attributes")}}</li> - <li>{{domxref("Element.hasAttribute()")}}</li> -</ul> +- {{domxref("Element.attributes")}} +- {{domxref("Element.hasAttribute()")}} |