gpt4 book ai didi

javascript - 基于当前时间的重定向

转载 作者:行者123 更新时间:2023-11-30 17:35:40 25 4
gpt4 key购买 nike

var currentTime = new Date()
var hours = currentTime.getHours()
var minutes = currentTime.getMinutes()

我得到正确的时间。也想在 IST 中转换日期和时间。

我想根据时间重定向到新的 url

如果当前 IST 时间是

6:00 PM IST

我想在 2 小时后重定向网站用户。

就像美国东部标准时间晚上 8:00 之后

top.location.href = 'xxxxx';

最佳答案

setTimeout(function(){
window.location.replace("http://www.google.com");
},7200000);

这应该有效,此示例应在 7200000 毫秒(2 小时)后重定向到 google.com。

试一试……将位置更改为您想要的 URL,您可以将 7200000 更改为 3000 以进行测试。

关于javascript - 基于当前时间的重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22131150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com