Home  >  Article  >  Web Front-end  >  How to use html progress tag

How to use html progress tag

藏色散人
藏色散人Original
2019-05-27 13:59:373281browse

html The progress tag is used to mark the progress (process) of the task. Please use the tag together with JavaScript to display the progress of the task.

How to use html progress tag

#html How to use the progress tag?

Function: Mark the progress (process) of the task.

Description: The tag is a new tag in HTML 5.

Note: Please use the tag with JavaScript to display the progress of the task.

html progress tag example

<!DOCTYPE html>
<html>
<body>
下载进度:
<progress value="22" max="100">
</progress>
<p><b>注释:</b>Internet Explorer 9 以及更早的版本不支持 progress 标签。</p>
</body>
</html>

Effect:

How to use html progress tag

The above is the detailed content of How to use html progress tag. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use html param tagNext article:How to use html param tag