HTML DOM Input DatetimeLocal value Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input DatetimeLocal value Property

❮ Input DatetimeLocal Object

Example

Set a local date and time for a datetime field:

document.getElementById("myLocalDate").value = "2014-01-02T11:42:13.510";
Try it Yourself »

Definition and Usage

The value property sets or returns the value of the value attribute of a local datetime field.

The value attribute specifies a local date and time for the datetime field.


Browser Support

Property
value Yes 10.0 Yes Yes Yes

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


Syntax

Return the value property:

datetimelocalObject.value

Set the value property:

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

Property Values

Value Description
YYYY-MM-DDThh:mm:ss.ms Specifies the date and time. Explanation of components:
  • YYYY - year (e.g. 2011)
  • MM - month (e.g. 01 for January)
  • DD - day of the month (e.g. 08)
  • T - a required separator if time is also specified
  • hh - hour (e.g. 22 for 10.00pm)
  • mm - minutes (e.g. 55)
  • ss - seconds (e.g. 03)
  • ms - milliseconds (e.g. 510)


Technical Details

Return Value: A String, representing the date and time of the local datetime field

More Examples

Example

Get the local date and time of a datetime field:

var x = document.getElementById("myLocalDate").value;
Try it Yourself »

Example

An example that shows the difference between the defaultValue and value property:

var x = document.getElementById("myLocalDate");
var defaultVal = x.defaultValue;
var currentVal = x.value;
Try it Yourself »

Related Pages

HTML reference: HTML <input> value attribute


❮ Input DatetimeLocal Object