html5时间输入显示12小时
我正在使用html 5输入元素type=time
。问题是它显示时间,12 hours
但我希望它在24 hours
一天中显示它。我怎样才能达到24小时?这是我的输入字段
<input type="time" name="time" placeholder="hrs:mins" pattern="^([0-1]?[0-9]|2[0-4]):([0-5][0-9])(:[0-5][0-9])?$" class="inputs time" required>
DEMO
这是jsfiddle
精慕HU
隔江千里