当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Input Time value用法及代码示例


HTML DOM中的DOM输入时间值属性用于设置或返回“时间”字段的value属性的值。 “值”属性用于为“时间”字段定义时间。

用法:

  • 它返回value属性。
    timeObject.value
  • 用于设置value属性。
    timeObject.value = hh:mm:ss.ms

属性值:


  • 它用于为时间字段指定时间。
  • hh -它指定小时。
  • mm- 它指定分钟。
  • ss-它指定秒数。
  • ms-它指定毫秒。

以下示例程序旨在说明时间值属性的用法。
示例1:本示例说明了如何返回属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Time value Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
  
        <h2> 
          DOM Input Time value Property 
      </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" 
           style="font-size:24px; 
                  color:green;"> 
      </p> 
  
        <script> 
            function geeks() { 
                
                var link =  
                    document.getElementById( 
                      "gfg").value; 
                
                document.getElementById( 
                  "GFG").innerHTML = link; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

示例2:本示例说明了如何设置属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Time value Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
  
        <h2> 
          DOM Input Time value Property 
      </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"
           style="font-size:24px; 
                  color:green'"> 
      </p> 
  
        <script> 
            function geeks() { 
                
                var link = document.getElementById( 
                  "gfg").value = "04:23:55"; 
                
                document.getElementById( 
                  "GFG").innerHTML =  
                  "The value has changed to " + link; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入“时间值”属性支持的浏览器如下:

  • 谷歌浏览器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Time value Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。