在特定时间安排函数调用
要在一天中的特定时间执行 JavaScript 函数,您可以结合使用 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>
注意:此方法仅在指定时间执行该函数一次。如果你想定期重复执行函数,可以使用 setInterval 来代替。
以上是如何安排在特定时间调用 JavaScript 函数?的详细内容。更多信息请关注PHP中文网其他相关文章!