blob: 91be13b037e0c002bd9b12d5ee84ec5a8729c4e4 (
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
|
---
title: Element.removeAttribute()
slug: Web/API/Element/removeAttribute
tags:
- API
- Attribut
- DOM
- Element
- Méthode
translation_of: Web/API/Element/removeAttribute
---
<p>{{ APIRef("DOM") }}</p>
<p><code>removeAttribute</code> entfernt ein Attribut vom gegebenen Element.</p>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<pre class="eval"><em>element</em>.removeAttribute(<em>attrName</em>);
</pre>
<ul>
<li><code>attrName</code> ist der Name des zu entfernenden Attributs (ein String).</li>
</ul>
<h2 id="Example" name="Example">Beispiel</h2>
<pre>// <div id="div1" align="left" width="200px">
document.getElementById("div1").removeAttribute("align");
// now: <div id="div1" width="200px">
</pre>
<h2 id="Notes" name="Notes">Anmerkungen</h2>
<p>Man sollte <code>removeAttribute</code> verwenden, statt den Attributswert auf <code>null zu setzen</code> (mit <a href="/en/DOM/element.setAttribute" title="en/DOM/element.setAttribute">setAttribute</a>).</p>
<p>Der Versuch, ein nicht vorhandenes Attribut zu entfernen, wirft keine Exception.</p>
<p>{{ DOMAttributeMethods() }}</p>
<h2 id="Specification" name="Specification">Spezifikation</h2>
<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-6D6AC0F9">DOM Level 2 Core: removeAttribute</a> (eingeführt in <a class="external" href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-removeAttribute">DOM Level 1 Core</a>)</p>
|