English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML progress Wert-Attribut

Der Wert-Attribut des progress-Elements ist eine Fließkommazahl und wird verwendet, um anzugeben, wie viel der Aufgabe bereits erledigt wurde.

 HTML <progress> Tag

Online-Beispiel

Wird heruntergeladen:

<!DOCTYPE html>
<html>
<head>
<title>HTML: <progress> - Wert-Attribut - Grundlagen-Tutorial-Web(oldtoolbag.com)<//title>
</head>
<body>
Downloading progress:
<progress value="22" max="100">
</progress>
</body>
</html>
Test and see ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

Internet Explorer 10、Firefox、Opera、Chrome and Safari 6 supports the value attribute.

Note:Internet Explorer 9 and earlier versions do not support the value attribute of the <progress> tag.

Definition and Usage

The value attribute specifies how much of a task has been completed.

HTML 4.01 and HTML5differences between

The <progress> tag is an HTML5 of the new tags in.

Syntax

<progress value="number">

Attribute Value

ValueDescription
numberA floating-point number used to specify how much of a task has been completed.
 HTML <progress> Tag