HTMLOListElement: start-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 start-Eigenschaft des HTMLOListElement-Interfaces gibt den Startwert der geordneten Liste an, mit einem Standardwert von 1.

Sie spiegelt das start-Attribut des <ol>-Elements wider.

Hinweis: Der Wert der start-Eigenschaft ist unabhängig von der HTMLOListElement.type-Eigenschaft; er ist immer numerisch, auch wenn der Typ Buchstaben oder römische Ziffern sind.

Wert

Ein long-Wert.

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");
console.log(olElement.start); // Output: "1"
olElement.start = "11";
console.log(olElement.start); // Output: "11"

Ergebnis

Spezifikationen

Specification
HTML Standard
# dom-ol-start

Browser-Kompatibilität

BCD tables only load in the browser