function countdown()
{
seconds = 1000;
delay = delay-seconds;
conversion = Math.ceil(delay / seconds );
document.getElementById('timer').innerHTML = conversion + ":seconds until alarm goes off";
t3 = setTimeout("countdown()",1000);
if(conversion == 0)
{
alert('Wake UP!!!');
DontDoIt();
}
}
此代码以秒为单位显示计时器。如果时间大于 60,我希望能够以分钟和秒为单位显示时间。
我希望能够用小时、分钟和秒来做到这一点