值
一個大於零的浮點數。預設值為 1.0。
示例
HTML
html
Progress: <progress id="pBar"></progress> <span>0</span>%
JavaScript
js
const pBar = document.getElementById("pBar");
const span = document.getElementsByTagName("span")[0];
console.log(`Default value of max: ${pBar.max}`);
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);
規範
| 規範 |
|---|
| HTML # dom-progress-max |
瀏覽器相容性
載入中…