我需要一个html表单的时间戳输入。不知道这是否可行,但我刚刚开始

时间:2013-03-19 00:44:05

标签: html input

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

<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

感谢帮助!

1 个答案:

答案 0 :(得分:1)

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

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

W3C:input: type=time