HTMLProgressElement: value-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 value
-Eigenschaft der Schnittstelle HTMLProgressElement
stellt den aktuellen Fortschritt des <progress>
-Elements dar.
Wert
Eine Gleitkommazahl. Wenn kein max
-Wert auf der Fortschrittsanzeige gesetzt ist, liegt der Wert zwischen 0,0 und 1,0. Wenn der max
-Wert gesetzt ist, liegt der value
zwischen 0
und dem max
-Wert.
Wenn die value
-Eigenschaft nicht auf das HTMLProgressElement
-Objekt gesetzt ist, bleibt die Fortschrittsanzeige unbestimmt.
Beispiele
HTML
html
Determinate Progress bar: <progress id="pBar"></progress> <span>0</span>%
<br />
Indeterminate Progress bar: <progress></progress>
JavaScript
js
const pBar = document.getElementById("pBar");
const span = document.getElementsByTagName("span")[0];
pBar.max = 100;
pBar.value = 0;
setInterval(() => {
pBar.value = pBar.value < pBar.max ? pBar.value + 1 : 0;
span.textContent = Math.trunc(pBar.position * 100);
}, 100);
Spezifikationen
Specification |
---|
HTML Standard # dom-progress-value |
Browser-Kompatibilität
BCD tables only load in the browser