H5表单中时间&日期控件
<form action="doAction.ashx" method='post'> <input type="date" name="datetime" />年/月/日 <br/> <input type="datetime" name="datetime1" /> <br/> <input type="datetime-local" name="datetime2" />年/月/日 时:分<br/> <input type="month" name="month" />年 月<br/> <input type="week" name="week" />年 第几周<br/> <input type="time" name="time" />时:分<br/> <input type="submit" value="提交"> </form>