使用JS检查用户是否是EST时区并且在EST时间范围内

时间:2015-02-20 22:02:04

标签: javascript jquery timezone

我有一种情况,我正在尝试在EST时区中的警报用户尝试在美国东部时间早上12点到美国东部时间凌晨3点之间提交帖子。

伪代码:

var systemTimeZone = get current EST time ??
var currentUserTime = new Date();

If(currentUserTime > 12am EST && < 3am EST){
  // show alert modal
}

我如何实现这一目标,同时考虑夏令时。

4 个答案:

答案 0 :(得分:1)

moment.jsmoment-timezone一起使用:

// get the current time in the user's local time zone
var nowLocal = moment();

// get the current time in the US Eastern time zone
var nowEastern = moment.tz("America/New_York");

// see if the time zone offsets match or not
if (nowLocal.utcOffset() != nowEastern.utcOffset())
{
    // see if it's before 3:00 AM in the Eastern time zone
    if (nowEastern.hour() < 3)  // note: checking hour >= 0 would be redundant
    {
        alert("It's too early in New York!")
    }
}

答案 1 :(得分:0)

我强烈建议您查看MomentJS之类的内容。进行日期\时间比较和格式化需要做很多工作。

利用时刻做我认为你正在努力实现的目标将是:

var serverTimeUtc = /* Get from server a UTC time */
var momentTime = moment(serverTimeUtc);
if (momentTime.hour() >= 0 && momentTime.hour() < 3) {
    // Server event occurred between 12am and 3am local time
}

如果您只关心EST而不考虑当地时间,那么您必须进行一些时区转换,moment.tz可以提供帮助。

答案 2 :(得分:0)

以下代码将根据格林威治标准时间提供当前日期的时区偏移:

var today = Date.now();
today = new Date(today);
var systemTimeZone = today.getTimezoneOffset();

您只需要计算EST的时区偏移范围:Timezone Table

答案 3 :(得分:0)

此库为您提供用户所在时区的名称。如果它没有返回&#34; America / New York&#34;,您将知道该用户不在东部时间。

http://pellepim.bitbucket.org/jstz/