Open In App

HTML | DOM Input DatetimeLocal value Property

The Input DatetimeLocal value property is used for setting or returning the value of the value attribute of a datetimeLocal field. The Input DatetimeLocal value attribute can be used for specifying a date and time for the datetimeLocal field. Syntax:

datetimelocalObject.value
datetimelocalObject.value = YYYY-MM-DDThh:mm:ss.ms

Property Value:



Below program illustrates the DatetimeLocal value property : Setting a date and time for a datetimeLocal field. 




<!DOCTYPE html>
<html>
 
<head>
    <title>Input DatetimeLocal value Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>Input DatetimeLocal value Property</h2>
    <br> Date Of Birth:
    <input type="datetime-local" id="Test_DatetimeLocal">
 
     
<p>To set a date and time for the datetimeLocal field,
      double-click the "Set Date And Time" button.</p>
 
 
    <button ondblclick="My_DatetimeLocal()">Set Date And Time</button>
 
    <p id="test"></p>
 
 
    <script>
        function My_DatetimeLocal() {
            document.getElementById("Test_DatetimeLocal").value
                                      = "2019-02-04T12:32:20.51";
        }
    </script>
 
</body>
 
</html>
                                        

Output: After clicking the button:



Note: The <input type=”datetime-local”> element does not show any datetime field/calendar in Firefox.

Supported Web Browsers:


Article Tags :