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


HTML Input Time defaultValue用法及代码示例


HTML DOM中的DOM输入时间defaultValue属性用于设置或返回时间字段的默认值。此属性用于反映HTML值属性。默认值和值之间的主要区别在于,默认值表示默认值,并且在进行一些更改后该值包含当前值。此属性对于确定“时间”字段是否已更改很有用。

用法:

  • 它返回defaultValue属性。
    timeObject.defaultValue
  • 它用于设置defaultValue属性。
    timeObject.defaultValue = value

属性值:它包含单个属性值,该值定义“时间”字段的默认值。


返回值:它返回一个字符串值,该字符串值表示“时间”字段的默认值。

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

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

输出:
在单击按钮之前:

单击按钮后:

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

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

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入支持的浏览器的Time defaultValue属性如下所示:

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


相关用法


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