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.
我希望能够在像这样的 html5<input> 时间标签中进行选择
<input>
<input type="time" value="00:00:00" step="0.1">
还有负时间,例如“-10:02:3.000”。我能怎么做?
您不能使用标准时间输入类型来做到这一点。它指的是一天中的时间,而不是绝对的时间量。
您需要一个 JavaScript 解决方案来实现您正在寻找的功能。
你不能这样做。实际上你可以使用 css 技巧,但不推荐。
使用文本类型和自定义验证。或者根据需要定义用户特定的输入类型。