这是我的问题:
我有一个仅在夜间(21:00 到 24:00 之后)工作alert()
的'The website is not available yet'
网站
但要这样做,它必须在伪代码中检查时间:
if (time is less more than 21:00 and less than 24:00) {
return true;
} else {
alert('the website is not available yet');
e.preventDefault;
return false;
}
但我不明白我怎么能在时差方面做到这一点,在任何一天,任何提示?
谢谢你们!