gpt4 book ai didi

javascript - 每秒更新一次以显示时间

转载 作者:行者123 更新时间:2023-12-04 10:02:35 25 4
gpt4 key购买 nike

我真的很陌生。我希望这个 js 更新每一个 scond,这样它就像一个时钟或显示时间

也许使用setInterval?我不知道该怎么做

这是我的代码

忽略我代码中的巴哈萨语

date = new Date();
menit = date.getMinutes();
jam = date.getHours();
hari = date.getDay();
tanggal = date.getDate();
bulan = date.getMonth();
tahun = date.getFullYear();

document.write(tanggal+" "+arrbulan[bulan]+" "+tahun+"<br>"+jam+" : "+menit);

最佳答案

这应该有效:

<p id="date"></p>

<script>
setInterval(function(){
date = new Date();
seconds = date.getSeconds();
menit = date.getMinutes();
jam = date.getHours();
hari = date.getDay();
tanggal = date.getDate();
bulan = date.getMonth();
tahun = date.getFullYear();
document.getElementById('date').innerHTML = tanggal+" "+((bulan+1)%12)+" "+tahun+"<br>"+jam+" : "+menit+" : "+seconds;
},1000);
</script>

关于javascript - 每秒更新一次以显示时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61754214/

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