html5中对日期的处理

来源:互联网 发布:软件缺陷预测 编辑:程序博客网 时间:2024/05/29 08:32
HTML5 拥有多个可供选取日期和时间的新输入类型:
date - 选取日、月、年
month - 选取月、年
week - 选取周和年
time - 选取时间(小时和分钟)
datetime - 选取时间、日、月、年(UTC 时间)

datetime-local - 选取时间、日、月、年(本地时间)


//html5使对日期的处理变的很简单


<form action="/example/html5/demo_form.asp" method="get">
Date: <input type="date" name="user_date" />
<input type="submit" />
</form>
0 0
原创粉丝点击