ここに私の質問があります:
夜間 (21:00 から 24:00 まで) のみ機能する Web サイトを持っています。「Enter」というボタンが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;
}
しかし、時差の観点からそれを行う方法がわかりません。いつでも、何かヒントはありますか?
君たちありがとう!