我想使用时间输入来允许用户在视频中选择精确的时间(在一些非常长的视频中)。 我不希望输入将选择限制在最大23:59:59,是否可以选择例如46:59:10?
即。在几分钟和几秒钟保持原始行为,但允许几小时超过23?
我尝试设置max="10000:00:00"
,但这并没有改变输入行为。
更一般的用例是允许持续时间输入可能大于1天
<label>Select a duration: <input type="time" step="1"/></label>
&#13;
答案 0 :(得分:1)
除了这一个,我想不出任何简单的方法,只有两个input
s:
/* Standardize the different styles of the inputs */
input {
box-sizing: border-box;
height: 2em;
}
<label>Select a duration (days and time):</label><br>
<input type="number" min="0" max="100" value="0" /><input type="time" step="1" />
我希望它有所帮助。