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


HTML DOM Input Time用法及代碼示例


HTML DOM中的Input Time對象表示類型為“time”的<input>元素。可以使用getElementById()方法訪問時間屬性。

用法:

document.getElementById("id");

將id分配給<input>標簽的位置。

屬性值:

  • list:它返回包含時間字段的數據列表的參考。
  • form:它返回包含時間字段的表單的引用。
  • autocomplete:它用於設置或返回時間字段的自動完成屬性的值。
  • autofocus:它用於設置或返回頁麵加載時時間字段是否應自動獲得焦點。
  • defaultvalue:它用於設置或返回時間字段的默認值。
  • disabled:它用於設置或返回是否禁用時間字段。
  • max:它用於設置或返回時間字段的max屬性的值。
  • min:它用於設置或返回時間字段的min屬性的值。
  • name:它用於設置或返回時間字段的name屬性的值。
  • readOnly:它用於設置或返回時間字段是否為隻讀。
  • required:它用於設置或返回在提交表單之前是否必須填寫時間字段。
  • size:它用於設置或返回時間字段的size屬性的值。
  • type:它返回時間字段所屬的表單元素的類型。
  • value:它用於設置或返回時間字段的value屬性的值。

範例1:本示例描述了getElementById()方法,該方法用於訪問type = “time”屬性的<input>元素。



<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Input Time Object  
        </title> 
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;">  
                GeeksForGeeks  
            </h1>  
              
            <h2>DOM Input Time Object</h2>  
                  
            <label for = "uname" style = "color:green"> 
                <b>Enter time</b> 
            </label> 
              
            <input type = "time" id = "gfg" 
                placeholder = "Enter time"> 
              
            <br><br> 
                  
            <button type = "button" onclick = "geeks()">  
                Click 
            </button>  
              
            <p id = "GFG"></p> 
              
            <script>  
                function geeks() {  
                    var link = document.getElementById("gfg").value;  
                    document.getElementById("GFG").innerHTML = link; 
                }  
            </script>  
        </center> 
    </body>  
</html>                    

輸出:
之前單擊按鈕:

單擊按鈕後:

範例2:此示例描述了document.createElement()方法,用於創建具有type = “time”屬性的<input>元素。

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Input URL Object 
        </title> 
    </head>  
      
    <body>  
    <center> 
        <h1 style="color:green">  
            GeeksForGeeks  
        </h1>  
              
        <h2>DOM Input time Object </h2>  
                  
         
              <label for = "uname" style = "color:green"> 
                <b>Enter time</b> 
        </label> 
           <p id="GFG"></p> 
        <button type = "button" onclick = "myGeeks()">  
            Click 
        </button>  
              
         
              
        <script>  
            function myGeeks() {  
                var link = document.createElement("INPUT"); 
                link.setAttribute("type", "time"); 
                link.setAttribute("value", "08:08:19"); 
                document.getElementById("GFG").appendChild(link); 
            }  
        </script>  
        </center> 
    </body>  
</html>                     

輸出:
之前單擊按鈕:

之前單擊按鈕:




相關用法


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