gpt4 book ai didi

javascript - html - 如何显示输入时间 show M :S. ms (minutes :second. millisecond)?

转载 作者:行者123 更新时间:2023-11-30 20:36:55 26 4
gpt4 key购买 nike

如何在html中输入时间?

我希望输入的格式是 MM:SS.ms。

我想制作像 https://www.olympic.org/pyeongchang-2018/results/en/alpine-skiing/results-men-s-downhill-trno-000100-.htm 中那样的时间表

MM: minutes
SS: second
ms: milisecond

这是我目前所做的

<style type="text/css">
#time1, #time2 {
width: 125px;
}
</style>

<form>
<label for="time1">Result </label>
<input id="time1" type="text" name="time1">
<input type="checkbox" onclick="enableInputTime('time1')"> Input Time?
<br>
<label for="time2">Result </label>
<input id="time2" type="text" name="time2">
<input type="checkbox" onclick="enableInputTime('time2')"> Input Time?

</form>

<script type="text/javascript">

function enableInputTime(id) {
var id = document.getElementById(id);
if(id.type === 'text') {
id.type = 'time';
id.step = "0.1";
} else {
id.type = 'text';
id.list = "Options";
}
}

</script>

最佳答案

<input id=foo name=foo type=time min="0:00" max="120:00">

https://jsfiddle.net/tz35nqso/

我知道 HTML5 有一个输入时间元素,但您必须删除毫秒字段。否则,请像其他人建议的那样使用第 3 方库。

关于javascript - html - 如何显示输入时间 show M :S. ms (minutes :second. millisecond)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49727486/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com