根据时区重定向用户



我想知道是否有办法使用 JavaScript 根据时区重定向用户?

例如,时区介于 gmt-12 和 gmt-8 之间.htm重定向到 page1。

我正在查看getTimezoneOffset(),但我不知道如何根据结果使其重定向。

谢谢。

您可以使用window.location

var date = new Date(),
    offset = date.getTimezoneOffset();
if (offset <= 720 && offset >= 960) {
  window.location.href = 'page1.htm';
}

相关内容

  • 没有找到相关文章

最新更新