有人可以解释为什么当我设置datetime-local输入的默认值除秒:00,浏览器给我一个错误“无效的值”。
这可能是Chrome的datetime-local实现中的错误,因为此错误不会显示在最新的Firefox和Safari中。
Chrome中发生错误:30.0.1599.69
Chrome Canary:32.0.1665.2 canary
这工作:
<input type="datetime-local" name="pub_date" value="2013-10-09T15:38:00">
但这不:
<input type="datetime-local" name="pub_date" value="2013-10-09T15:38:15">
根据W3 Spec for the datetime-local input element,value属性应该包含“表示本地日期和时间的字符串”。
Example: 1985-04-12T23:20:50.52 1996-12-19T16:39:57
我试过两个上面的例子,他们也不工作。
更新:已确认错误&解
这个行为是一个known bug。
<input type="datetime-local" name="pub_date" value="2013-10-09T15:38:15" step="1">
解决方法
此操作适用于Chrome版本52.0.2743.116 m
<input type="datetime-local" name="pub_date" value="2013-10-09T15:38:15" />