html5 日期和时间选择器

时间:2024-03-03 20:29:47

HTML5 拥有多个供选择日期和时间的新的输入类型:
date - 选择日、月、年
month - 选择月、年
week - 选择周、年
time - 选择时间(时、分)
datetime - 选择时间、日期、月、年(UTC 时间)
datetime-local - 选择时间、日期、月、年(本地时间)

示例:

Date: <input type="date" name="user_date" />

PS:

Internet Explorer 和 Firefox 不支持 <input type="date"> 元素,移动端支持。