4

所以就像我说我不知道​​我是否正确地做任何这些,但我基本上是在自学,我似乎无法找到任何关于有时间戳输入字段的信息。它实际上是用于输入电影的时间戳。

<div id="form"><form>
First Name: <input type="text" name="firstname">
Last Name: <input type="text" name="lastname">
Movie Title: <input type="text" name="movietitle">
<p>Is the drink...</p>
<input type="radio" name="drinktype" value="alcoholic">Alcoholic
<input type="radio" name="drinktype" value="soft">Non-alcoholic
<p>What exact time did the Buffalo occur during the movie?</p>
<input type="time" name="timestamp"><br>
<input type="submit" value="Submit">
</form></div>

我没有为此展示任何 CCS 方面的内容,因为我真正想知道如何做的是首先以这种格式 hh:mm:ss 的时间戳输入字段

感谢帮助!

4

1 回答 1

2

您可以在标签中使用step属性:input

<input type="time" name="timestamp" step="1">

W3C:输入:类型=时间

于 2013-03-20T10:37:51.583 回答