Diese Übersetzung ist unvollständig. Bitte helfen Sie, diesen Artikel aus dem Englischen zu übersetzen.
Das id globale Attribut definiert einen eindeutigen Bezeichner (ID) welcher eindeutig im gesamten Dokument sein muss. Das Ziel ist die Identifizierung eines Elementes in Verknüpfungen (durch einen Fragmentbezeichner), Skripting, oder Stylisierung (mit CSS).
Der Wert des Attributes ist eine undurchsichtige Zeichenkette: dies beudetet, dass der Webautor es nicht benutzen darf um Informationen abzuleiten. Bestimmte Bedeutung, zum Beispiel bdeutungsspezifische Eigenschaften, dürfen nicht von der Zeichenkette abgeleitet sein.
Der Attributwert darf keine Leerzeichen enthalten. Browsers treat non-conforming IDs that contains white spaces as if the white space is part of the ID. In contrast to the class attribute, which allows space-separated values, elements can only have one single ID defined through the id attribute. Note that an element may have several IDs, but the others should be set by another means, such as via a script interfacing with the DOM interface of the element.
Note: Using characters except ASCII letters and digits, '_'
, '-'
and '.'
may cause compatibility problems, as they weren't allowed in HTML 4. Though this restriction has been lifted in HTML 5, an ID should start with a letter for compatibility.
Specifications
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard Die Definition von 'id' in dieser Spezifikation. |
Lebender Standard | No change from latest snapshot, HTML5.1 |
HTML5.1 Die Definition von 'id' in dieser Spezifikation. |
Arbeitsentwurf | Snapshot of WHATWG HTML Living Standard, no change from HTML5 |
HTML5 Die Definition von 'id' in dieser Spezifikation. |
Empfehlung | Snapshot of WHATWG HTML Living Standard, now accept '_' , '-' and '.' if not at the beginning fo the id. It is also a true global attribute. |
HTML 4.01 Specification Die Definition von 'id' in dieser Spezifikation. |
Empfehlung | Supported on all elements but <base> , <head> , <html> , <meta> , <script> , <style> , and <title> . |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Ja) | (Ja)[1] | (Ja) | (Ja) | (Ja) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Ja) | (Ja) | (Ja)[1] | (Ja) | (Ja) | (Ja) |
[1] class is a true global attribute only since Firefox 32.
See also
- All global attributes.
Element.id
that reflects this attribute.