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


HTML Input Time max用法及代码示例


HTML DOM中的DOM Input Time max属性用于设置或返回“时间”字段的max属性值。 max属性指定“时间”字段允许的最大时间值。

用法:

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

属性值:


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

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

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Time max Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
  
        <h2> 
          DOM Input Time max 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").max; 
                
                document.getElementById( 
                  "GFG").innerHTML = link; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input Time max Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
  
        <h2> 
          DOM Input Time max 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").max = "24:00"; 
                
                document.getElementById( 
                  "GFG").innerHTML =  
                  "The value of the max attribute"+ 
                  " was changed to " + link; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入的Time max属性支持的浏览器如下:

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


相关用法


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