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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
---
title: contenteditable
slug: Web/HTML/Globale_Attribute/contenteditable
tags:
- Globale Attribute
- HTML
- Referenz
- Textbearbeitung
- Texteingabe
- contenteditable
translation_of: Web/HTML/Global_attributes/contenteditable
---
<div>{{HTMLSidebar("Global_attributes")}}</div>
<p>Das <a href="/de/docs/Web/HTML/Globale_Attribute">globale Attribut</a> <code><strong>contenteditable</strong></code> ist ein Aufzählungsattribut, das angibt, ob das Element für den Benutzer bearbeitbar sein soll. Das Attribut muss eines der folgenden Werte annehmen:</p>
<ul>
<li><code>true</code> oder eine <em>leere Zeichenkette</em> geben an, dass das Element editierbar sein soll;</li>
<li><code>false</code> gibt an, dass das Element nicht editierbar sein darf..</li>
</ul>
<p>Wenn das Attribut nicht gesetzt ist, wird der Standardwert vom Elternelement <em>geerbt</em>.</p>
<p>Das Attribut ist ein <em>Aufzählungs-</em> und kein <em>Boolean</em>-Attribut. Das bedeutet, dass eines der Werte <code>true</code>, <code>false</code> oder die leere Zeichenkette erforderlich sind und eine abgekürzte Schreibweise wie <code><label contenteditable>Example Label</label></code> nicht erlaubt ist. Die richtige Verwendung ist <code><label contenteditable="true">Example Label</label></code>.</p>
<p>Die Farbe der {{Glossary("caret", "Texteinfügemarke")}} kann mit der CSS-Eigenschaft {{cssxref("caret-color")}} gesetzt werden.</p>
<h2 id="Spezifikation">Spezifikation</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentar</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', "editing.html#attr-contenteditable", "contenteditable")}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Keine Änderung seit letztem Snapshot, {{SpecName('HTML5.1')}}</td>
</tr>
<tr>
<td>{{SpecName('HTML5.1', "editing.html#attr-contenteditable", "contenteditable")}}</td>
<td>{{Spec2('HTML5.1')}}</td>
<td>Snapshot von {{SpecName('HTML WHATWG')}}, keine Änderung seit {{SpecName('HTML5 W3C')}}</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', "editing.html#attr-contenteditable", "contenteditable")}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>Snapshot von {{SpecName('HTML WHATWG')}}, ursprüngliche Definition.</td>
</tr>
</tbody>
</table>
<h2 id="Browserkompatibilität">Browserkompatibilität</h2>
<p>{{ CompatibilityTable }}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{ CompatVersionUnknown }}</td>
<td>{{ CompatGeckoDesktop("1.9") }}</td>
<td>{{ CompatVersionUnknown }}</td>
<td>{{ CompatVersionUnknown }}</td>
<td>{{ CompatVersionUnknown }}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android Webview</th>
<th>Chrome for Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{ CompatVersionUnknown }}</td>
<td>{{ CompatVersionUnknown }}</td>
<td>{{ CompatGeckoMobile("1.9") }}</td>
<td>{{ CompatVersionUnknown }}</td>
<td>{{ CompatVersionUnknown }}</td>
<td>{{ CompatVersionUnknown }}</td>
</tr>
</tbody>
</table>
</div>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li><a href="/de/docs/Web/Guide/HTML/Content_Editable">Inhalt bearbeitbar machen</a></li>
<li><a href="/de/docs/Web/HTML/Globale_Attribute">Globale Attribute</a></li>
<li>{{domxref("HTMLElement.contentEditable")}} and {{domxref("HTMLElement.isContentEditable")}}</li>
<li>The CSS {{cssxref("caret-color")}} property</li>
</ul>
|