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


HTML Input Date defaultValue用法及代码示例


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

用法:

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

属性值:它包含单个属性值,该属性值定义“输入日期”字段的默认值。


返回值:它返回一个字符串值,该字符串值表示文本字段的默认值。

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

<!DOCTYPE html>  
<html>  
  
<head>  
    <title> 
        HTML DOM Input Date defaultValue Property 
    </title>  
  
    <style>  
        h1 {  
            color:green;  
        }  
          
        h2 {  
            font-family:Impact;  
        }  
          
        body {  
            text-align:center;  
        }  
    </style>  
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1>  
  
    <h2>Input Date default Value Property</h2>  
    <br>  
  
    <input type="date" id="test_Date"
            value = "2014-02-09" autofocus>  
  
    <button ondblclick="My_Date()">Check</button>  
  
    <p id="test"></p>  
  
    <script>  
        function My_Date() {  
            var d = document.getElementById("test_Date").defaultValue;  
            document.getElementById("test").innerHTML = d;  
        }  
    </script>  
</body>  
  
</html> 

输出:

  • 在单击按钮之前:
  • 单击按钮后:

范例2:本示例返回Input Date defaultValue属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title> 
        HTML DOM Input Date defaultValue Property 
    </title>  
  
    <style>  
        h1 {  
            color:green;  
        }  
          
        h2 {  
            font-family:Impact;  
        }  
          
        body {  
            text-align:center;  
        }  
    </style>  
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1> 
   
    <h2>Input Date default Value Property</h2>  
    <br>  
  
    <input type="date" id="test_Date"
            value = "2014-02-09" autofocus>  
  
    <button ondblclick="My_Date()">Check</button>  
  
    <p id="test"></p>  
  
    <script>  
        function My_Date() {  
            var d = document.getElementById( 
                "test_Date").defaultValue =  " 2019-05-09";   
            document.getElementById("test").innerHTML 
                = " The defaultValue was changed to " + d;  
        }  
    </script>  
</body>  
  
</html> 

输出:

  • 在单击按钮之前:
  • 单击按钮后:

支持的浏览器:下面列出了HTML DOM输入日期defaultValue属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera


相关用法


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