gpt4 book ai didi

javascript - 使用javascript在秒表中将时间值设置为零

转载 作者:行者123 更新时间:2023-11-30 09:52:43 24 4
gpt4 key购买 nike

<script>
function stop()
{
d=new Date();
d.setHours(0,0,0,0);
document.getElementById("time").value = d;
}
</script>
<form>
<input type=button value="stop" onclick="stop()">
</form>

我想使用停止按钮重置 watch 的时间,但上面的代码不起作用。我也尝试过直接输入字符串(“00:00:00”)而不是使用 setHours 函数。

最佳答案

你不能为 Element #time 设置一个对象 Date,你可以试试:document.getElementById("time").value = d.getHours() + ":"+ d.getMinutes() + ":"+ getSeconds();

关于javascript - 使用javascript在秒表中将时间值设置为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35534173/

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