blob: 457c552bb9b03e57f6e81164a40f8927b5cb11d9 (
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
|
---
title: element.removeAttributeNS
slug: Web/API/Element/removeAttributeNS
tags:
- API
- DOM
- Element
- Méthodes
translation_of: Web/API/Element/removeAttributeNS
---
<p>{{ APIRef("DOM") }}</p>
<p><code>removeAttributeNS</code> supprime l'attribut spécifié d'un élément.</p>
<p>Dans Firefox 3 et postérieurs, cette méthode réinitialise les valeurs DOM à leur valeur par défaut.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="eval"><em>element</em>.removeAttributeNS(<em>namespace</em>,<em>attrName</em>);
</pre>
<ul>
<li><code>namespace</code> est une chaîne qui contient l'espace de noms de l'attribut.</li>
<li><code>attrName</code> est une chaîne qui nomme l'attribut à supprimer du noeud en cours.</li>
</ul>
<h2 id="Exemple">Exemple</h2>
<pre>// <div id="div1" xmlns:special="http://www.mozilla.org/ns/specialspace"
// special:specialAlign="utterleft" width="200px" />
d = document.getElementById("div1");
d.removeAttributeNS("http://www.mozilla.org/ns/specialspace", "specialAlign");
// l'élément est devenu : <div id="div1" width="200px" />
</pre>
<h2 id="Notes">Notes</h2>
<p>{{ DOMAttributeMethods() }}</p>
<h2 id="Sp.C3.A9cification">Spécification</h2>
<ul>
<li><a href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-ElRemAtNS">DOM Level 2 Core: removeAttributeNS (en)</a> <small>— <a href="http://www.yoyodesign.org/doc/w3c/dom2-core/core.html#ID-ElRemAtNS">traduction en français</a> (non normative)</small></li>
</ul>
|