Open In App

HTML | DOM Input DatetimeLocal name Property

Last Updated : 29 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Input DatetimeLocal name property is used to set or return the value of the name attribute of a datetimeLocal field. 
The form data which has been submitted to the server can be identified by the name attribute. The name attribute is also used for referencing form data on the client side using Javascript.
Syntax: 
 

  • To return the name property: 
     
datetimelocalObject.name
  • To set the name property: 
     
datetimelocalObject.name = name

Property Value 
 

  • name: It is used to specify the name of the datetimeLocal field.

Return Value:  It returns a string value, which represents the name of the local datetime field

Below program illustrates the DatetimeLocal name property : 
Example: Getting the name of a datetimeLocal field. 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
    Input DatetimeLocal name 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 name Property
  </h2>
     
  <br> Date of Birth:
  <input type="datetime-local"
         id="Test_DatetimeLocal"
         name="DOB">
   
   
 
 
<p>To display the value of the name
    attribute of the datetimeLocal
    field, double-click the
    "Return Name" button.
  </p>
 
 
 
 
    <button ondblclick="My_DatetimeLocal()">
      Return Name
  </button>
 
    <p id="test"></p>
 
 
 
 
    <script>
        function My_DatetimeLocal() {
           
          var n = document.getElementById(
              "Test_DatetimeLocal").name;
           
            document.getElementById(
              "test").innerHTML = n;
        }
    </script>
 
</body>
 
</html>


Output:
Before clicking the button: 
 

After clicking the button: 
 

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

Supported Browsers: 

  • Google Chrome 20
  • Edge 12
  • Firefox 93
  • Opera 11
  • Safari 14.1

 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads