Game Development Reference
In-Depth Information
value (value must be a valid date time, as defined in the RFC 3339):
Specifies the actual date represented by this element
Datetime-local
The datetime-local input type allows the user to select a specific date and time (not
including time zone) from a browser-supplied calendar. The specific format and styl-
ing of this calendar is unique to the browser and platform used. The data that results
from a date selection is of the form YYYY-MM-DDTHH:MM:SS .
<input type="datetime-local"
min="1935-12-16T16:23:42"
max="2013-08-19T23:59:59"
/>
Other valid attributes for the date input type include the following:
name (value must be a string): Identifies a particular field by the string
value associated with the attribute
disabled (acceptable values include disabled , "" , or empty): Speci-
fies that the element is disabled and cannot receive control
autocomplete (acceptable values include on or off ): Specifies wheth-
er the browser should store values entered by the user so inputting a
stored value in the future can be automatically completed by the browser
upon hint by user
autofocus (acceptable values include autofocus , "" , or empty): Spe-
cifies to the browser that the element must receive focus immediately
after the document finishes loading
min (value must be a valid partial time in the form of "YYYY-MM-
DDTHH:MM:SS.Mss", "YYYY-MM-DDTHH:MM:SS", or "YYYY-MM-
DDTHH:MM"): Specifies the lowest date allowed to be selected by the
user
max (value must be a valid partial time in the form of "YYYY-MM-
DDTHH:MM:SS.Mss", "YYYY-MM-DDTHH:MM:SS", or "YYYY-MM-
DDTHH:MM"): Specifies the highest date allowed to be selected by the
user
readonly (acceptable values include readonly , "" , or empty): Speci-
fies that the value of this element cannot be changed by the user
Search WWH ::




Custom Search