HTMLOListElement: type-Eigenschaft
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Die type
-Eigenschaft der HTMLOListElement
-Schnittstelle gibt die Art des Markers an, der verwendet werden soll, um eine geordnete Liste darzustellen.
Sie spiegelt das type
-Attribut des <ol>
-Elements wider.
Hinweis: Der type
kann in CSS mit der list-style-type
-Eigenschaft definiert werden. Die list-style-type
-Eigenschaft bietet viele weitere Werte.
Wert
Ein String, der den Typ darstellt.
Die möglichen Werte sind im Abschnitt Attribut markertypes aufgeführt.
Beispiele
HTML
html
<ol id="order-list">
<li>Fee</li>
<li>Fi</li>
<li>Fo</li>
<li>Fum</li>
</ol>
JavaScript
js
const olElement = document.querySelector("#order-list");
// if type is not specified then return empty string
console.log(olElement.type); // Output: ""
olElement.type = "i"; // Using roman numeral type
console.log(olElement.type); // Output: "i"
Ergebnis
Spezifikationen
Specification |
---|
HTML Standard # dom-ol-type |
Browser-Kompatibilität
BCD tables only load in the browser