ホームページ > 記事 > ウェブフロントエンド > 特定の時間に JavaScript 関数呼び出しをスケジュールするにはどうすればよいですか?
特定の時間に関数呼び出しをスケジュールする
特定の時間に JavaScript 関数を実行するには、setTimeout と setTimeout を組み合わせて使用できます。日付オブジェクト。これを実現する方法は次のとおりです:
<code class="javascript">// Calculate the time in milliseconds until the desired hour var now = new Date(); var targetTime = new Date(); targetTime.setHours(10, 0, 0, 0); // Set the target time to 10:00:00 AM var millisTillTarget = targetTime - now; // If the target time is in the past (e.g., it's already 10:00 AM), adjust it to the next day if (millisTillTarget < 0) { millisTillTarget += 86400000; // Add 24 hours } // Schedule the function call using setTimeout setTimeout(function() { // Your function here (e.g., open a page or display an alert) }, millisTillTarget);</code>
このコードでは:
例: 毎日午前 10:00:00 に特定のページ (Google など) を開くには:
<code class="javascript">setTimeout(function() { window.open("http://google.com", "_blank"); }, millisTillTarget);</code>
注: この方法では、指定された時刻に 1 回だけ関数が実行されます。 。関数の実行を一定の間隔で繰り返したい場合は、代わりに setInterval を使用できます。
以上が特定の時間に JavaScript 関数呼び出しをスケジュールするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。