使用 unix 纪元时间戳的操作

Operations with unix epoch timestamp

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

相差 3 小时

您可以像这样检查 unix 时间戳(距纪元的秒数​​)是否在另一个日期的 3 小时以内(otherDateB 是日期对象,epochTimeStampA 是纪元时间戳作为数字):

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