gogogo
管理员
管理员
  • UID25
  • 粉丝0
  • 关注0
  • 发帖数1377
阅读:5150回复:0

HTML5 Input 类型:

楼主#
更多 发布于:2019-01-31 15:38
HTML5 Input 类型:


email
url
number
range
Date pickers (date, month, week, time, datetime, datetime-local)
search
color


例如:
<form action="/example/html5/demo_form.asp" method="get">
          Month: <input type="month" name="user_date" />
          <input type="submit" />
</form>


Input 类型 - Date Pickers(日期选择器)


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


返回顶部