progress
標籤定義執行中的任務進度(進程)。
屬性 | ||
---|---|---|
#max | number | |
##value | # number | |
position | float傳回 | 進度條|
labels | - |
max
預設情況下進度值範圍從0.0~1.0
,如果設定成max=100
,則進度取值範圍從
#value
規定目前值,若max=100
# ,value=50
則進度剛好一半.value
屬性的存在與否決定了progress進度條是否具有確定性
.當沒有value
時,瀏覽器進度條會無限循環,但是,一旦有了
##labels
也是唯讀屬性,得到的是指向該
progress
<!DOCTYPE html> <html> <head> <title>progress</title> <meta charset="utf-8"> </head> <body> <script type="text/javascript"> function myFunction() { var x=document.createElement("PROGRESS"); x.setAttribute("value","80"); x.setAttribute("max","100"); document.body.appendChild(x); } </script> <body> 创建PROGRESS: <button onclick="myFunction()" id="myprogress">创建</button> </body> </html>
<!DOCTYPE html> <html> <head> <title>progress</title> <meta charset="utf-8"> </head> <body> <script> function myFunction() { var x = document.getElementById("myProgress").position; document.getElementById("demo").innerHTML = x; } </script> <body> <p>下载进度条:</p> <progress id="myProgress" value="50" max="100"></progress> <p id="demo"></p> <button onclick="myFunction()">获取进度值</button> </body> </html>
以上是html progress標籤的使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!