HTML | DOM Input DatetimeLocal name Property
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
Property Value
- name: It is used to specify the name of the datetimeLocal field.
Below program illustrates the DatetimeLocal name property :
Example: Getting the name of a datetimeLocal field.
<!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:
Supported Browsers:
- Apple Safari
- Internet Explorer
- Firefox
- Google Chrome
- Opera
Recommended Posts:
- HTML | DOM Input DatetimeLocal value Property
- HTML | DOM Input DatetimeLocal min Property
- HTML | DOM Input DatetimeLocal max Property
- HTML | DOM Input DatetimeLocal required Property
- HTML | DOM Input DatetimeLocal readOnly Property
- HTML | DOM Input DatetimeLocal form Property
- HTML | DOM Input DatetimeLocal disabled Property
- HTML | DOM Input DatetimeLocal step Property
- HTML | DOM Input DatetimeLocal defaultValue Property
- HTML | DOM Input DatetimeLocal autocomplete Property
- HTML | DOM Input DatetimeLocal autofocus Property
- HTML | DOM Input DatetimeLocal type Property
- HTML | DOM Input DatetimeLocal Object
- HTML | DOM Input DatetimeLocal stepUp() Method
- HTML | DOM Input DatetimeLocal stepDown() Method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.