我正在尝试在午夜发出定时警报,到目前为止的代码:
function startTime() {
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
h = checkTime(h);
m = checkTime(m);
s = checkTime(s);
var t = setTimeout(function(){startTime()},1000);
if (h==0&&m==0&&s==0){window.alert("The date is "+new Date()); location.reload();}
}
每小时关闭一次,而不是像应有的那样每 24 小时关闭一次。我也找不到错误在哪里,因为它看起来应该可以工作。你能帮我么?