我正在使用Chrome(版本31.0.1650.63 m),当我通过javascript在input type date
上设置分钟日期时,min属性在HTML中更改,但是datepicker不使用它。< / p>
我错过了什么?
<input type="date" id="input" />
//...
document.getElementById('input').setAttribute("min", '2013-12-9');
答案 0 :(得分:3)
根据w3c(http://dev.w3.org/html5/markup/input.date.html) 你只需要在当天领先零:
而不是2013-12-9
必须是
2013-12-09
http://jsfiddle.net/edgarinvillegas/5UbPs/9/
有效:)
来自玻利维亚拉巴斯的欢呼声