使用unix纪元时间戳的操作

时间:2015-02-14 16:19:43

标签: javascript jquery unix-timestamp

我需要帮助,问题是我需要知道如何将一个日期与unix纪元时间戳格式(a)与jquery中的实际日期(b)进行比较,我需要知道是否(a)它`s在3小时到实际日期的间隔(b)

1 个答案:

答案 0 :(得分:0)

你可以检查一个unix时间戳(来自纪元的秒数​​)是否在另一个日期的3h内(例如,otherDateB是日期对象,epochTimeStampA是纪元时间戳的数字):

function withinThreeHours(epochTimeStampA, otherDateB) {
    var aTimeFromBtime = otherDateB - (epochTimeStampA * 1000);
    var threeHours = 1000 * 60 * 60 * 3;
    return aTimeFromBtime <= threeHours;
}