Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
也许我只是没有正确搜索,但有没有人知道一种方法可以让时间输入仅根据预设间隔使用微调器增加。所以如果是 10 分钟,让向上箭头去 +10 分钟,如果小时改变它会自动去 + 一个小时
8:50 - 向上箭头命中以 9:00 结束 - 或 - 8:50 - 向下箭头命中以 8:40 结束
当然,只需使用 step 属性,其中 step 指定要增加的秒数(60 秒 x 10 分钟 = 600 秒):
<input type="time" value="08:30:00" step="600">
jsFiddle 示例