基于当前时间的重定向

时间:2014-03-02 17:56:17

标签: javascript html

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

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

我希望根据时间重定向到新网址

如果当前的IST时间是

6:00 PM IST

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

喜欢在IST下午8:00之后

top.location.href = 'xxxxx';

1 个答案:

答案 0 :(得分:2)

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

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

尝试使用它....将位置更改为您想要的URL,您可以将7200000更改为3000以进行测试。