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


HTML Input Time min用法及代码示例


DOM Input Time min属性用于设置或返回数字字段的min属性的值。 min属性定义输入时间字段的最短时间。

用法:

  • 它返回min属性。
    timeObject.min
  • 用于设置min属性。
    timeObject.min = number

属性值:


  • hh:mm:ss.ms-它用于指定时间字段允许的最短时间。
  • hh- 它指定小时。
  • mm- 它指定分钟。
  • ss-它指定秒数。
  • ms-它指定毫秒。

返回值:它返回一个字符串值,该字符串值表示“时间”字段所允许的最短时间。

示例1:本示例说明了如何返回Input time min属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Time min Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
  
        <h2> 
          DOM Input Time min Property 
      </h2> 
  
        <label for="uname"
               style="color:green"> 
            <b>Enter time</b> 
        </label> 
  
        <input type="time" 
               id="gfg" 
               name="Geek_time" 
               placeholder="Enter time" 
               step="5" 
               min="16:00" 
               max="22:00"> 
  
        <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").min; 
                
                document.getElementById( 
                  "GFG").innerHTML = link; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Time min Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
  
        <h2> 
          DOM Input Time min Property 
      </h2> 
  
        <label for="uname"
               style="color:green"> 
            <b>Enter time</b> 
        </label> 
  
        <input type="time"
               id="gfg"
               name="Geek_time" 
               placeholder="Enter time"
               step="5" 
               min="16:00" 
               max="22:00"> 
  
        <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").min = "14:00"; 
                
                document.getElementById( 
                  "GFG").innerHTML =  
                  "The value of the min attribute"+ 
                  " was changed to " + link; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入的time min属性支持的浏览器如下:

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


相关用法


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