當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Progress用法及代碼示例


HTML DOM中的Progress對象用於表示HTML <progress>元素。可以使用getElementById()方法訪問<progress>元素。

屬性值:

  • level:它返回進度條列表。
  • max:用於設置或返回max屬性的進度條值。
  • value:它代表已經完成的工作量。
  • position:它返回進度條的當前位置。

用法:

document.getElementById("ID");

ID分配給<progress>元素的位置。

範例1:



<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            HTML DOM Progress Object 
        </title>  
    </head> 
      
    <body>  
        <h1 style="color:green;"> 
            GeeksForGeeks 
        </h1>  
          
        <h2>DOM Progress Object</h2> 
          
        Downloading progress for a song:
        <progress id = "GFG" value = "57" max = "100">  
        </progress>  
          
        <br><br> 
          
        <button onclick = "myGeeks()"> 
            Submit 
        </button> 
          
        <p id = "sudo"></p> 
          
        <script> 
            function myGeeks() { 
                var pr = document.getElementById("GFG").value; 
                document.getElementById("sudo").innerHTML = pr; 
            } 
        </script> 
    </body>  
</html>                              

輸出:
在單擊按鈕之前:

單擊按鈕後:

範例2:可以使用document.createElement方法創建進度對象。

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            HTML DOM Progress Object 
        </title>  
    </head>  
      
    <body>  
        <h1 style = "color:green;"> 
            GeeksForGeeks 
        </h1>  
          
        <h2>DOM Progress Object</h2> 
          
        <P id = "GFG"> 
            Downloading progress for a song:  
        </p>  
          
        <button onclick = "myGeeks()"> 
            Submit 
        </button> 
          
        <script> 
            function myGeeks() { 
                var g = document.createElement("PROGRESS"); 
                g.setAttribute("value", "57"); 
                g.setAttribute("max", "100"); 
                document.getElementById("GFG").appendChild(g); 
            } 
        </script> 
    </body>  
</html>                              

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Progress Object支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari




相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Progress Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。